Last active
January 28, 2026 16:34
-
-
Save dutta-alankar/a2d96ba972adad5ed754a03939a67352 to your computer and use it in GitHub Desktop.
Field length calculation in sims
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on Tue Jan 27 11:54:48 2026 | |
| @author: alankar. | |
| Usage: time python lF-res.py | |
| """ | |
| import numpy as np | |
| from scipy.interpolate import interp1d | |
| import matplotlib.colors | |
| import matplotlib.gridspec | |
| import matplotlib.pyplot as plt | |
| import matplotlib | |
| from matplotlib.lines import Line2D | |
| from labellines import labelLine, labelLines | |
| from decimal import Decimal | |
| import os | |
| import pathlib | |
| import re | |
| import numpy as np | |
| from scipy.interpolate import interp1d | |
| from scipy.stats import binned_statistic | |
| import h5py | |
| dark = False | |
| extension = "pdf" | |
| transparent = False | |
| ## Plot Styling | |
| ## Plot Styling | |
| matplotlib.rcParams["xtick.direction"] = "in" | |
| matplotlib.rcParams["ytick.direction"] = "in" | |
| matplotlib.rcParams["xtick.top"] = False | |
| matplotlib.rcParams["ytick.right"] = True | |
| matplotlib.rcParams["xtick.minor.visible"] = True | |
| matplotlib.rcParams["ytick.minor.visible"] = True | |
| matplotlib.rcParams["axes.grid"] = True | |
| matplotlib.rcParams["grid.linestyle"] = ":" | |
| matplotlib.rcParams["grid.linewidth"] = 0.8 | |
| matplotlib.rcParams["grid.color"] = "gray" | |
| matplotlib.rcParams["grid.alpha"] = 0.3 | |
| matplotlib.rcParams["lines.dash_capstyle"] = "round" | |
| matplotlib.rcParams["lines.solid_capstyle"] = "round" | |
| matplotlib.rcParams["legend.handletextpad"] = 0.4 | |
| matplotlib.rcParams["axes.linewidth"] = 1.0 | |
| matplotlib.rcParams["lines.linewidth"] = 3.5 | |
| matplotlib.rcParams["ytick.major.width"] = 1.2 | |
| matplotlib.rcParams["xtick.major.width"] = 1.2 | |
| matplotlib.rcParams["ytick.minor.width"] = 1.0 | |
| matplotlib.rcParams["xtick.minor.width"] = 1.0 | |
| matplotlib.rcParams["ytick.major.size"] = 11.0 | |
| matplotlib.rcParams["xtick.major.size"] = 11.0 | |
| matplotlib.rcParams["ytick.minor.size"] = 5.0 | |
| matplotlib.rcParams["xtick.minor.size"] = 5.0 | |
| matplotlib.rcParams["xtick.major.pad"] = 10.0 | |
| matplotlib.rcParams["xtick.minor.pad"] = 10.0 | |
| matplotlib.rcParams["ytick.major.pad"] = 6.0 | |
| matplotlib.rcParams["ytick.minor.pad"] = 6.0 | |
| matplotlib.rcParams["xtick.labelsize"] = 26.0 | |
| matplotlib.rcParams["ytick.labelsize"] = 26.0 | |
| matplotlib.rcParams["axes.titlesize"] = 24.0 | |
| matplotlib.rcParams["axes.labelsize"] = 28.0 | |
| matplotlib.rcParams["axes.labelpad"] = 8.0 | |
| plt.rcParams["font.size"] = 28 | |
| matplotlib.rcParams["legend.handlelength"] = 2 | |
| matplotlib.rcParams['legend.title_fontsize'] = '22' | |
| # matplotlib.rcParams["figure.dpi"] = 200 | |
| matplotlib.rcParams["axes.axisbelow"] = True | |
| matplotlib.rcParams["figure.figsize"] = (13,10) | |
| if dark: | |
| plt.style.use('dark_background') | |
| colors = ["black", "yellowgreen", "steelblue", "darkorchid", "plum", "goldenrod", "crimson"] | |
| cmap_name = "gist_rainbow" #earth_r" | |
| # Source - https://stackoverflow.com/a | |
| # Posted by jsalonen, modified by community. See post 'Timeline' for change history | |
| # Retrieved 2026-01-28, License - CC BY-SA 3.0 | |
| def fexp(number): | |
| (sign, digits, exponent) = Decimal(number).as_tuple() | |
| return len(digits) + exponent - 1 | |
| def fman(number): | |
| return Decimal(number).scaleb(-fexp(number)).normalize() | |
| pc = 3.086e+18 | |
| mu = 0.609 | |
| kB = 1.380649e-16 | |
| mp = 1.6726e-24 | |
| km = 1.000e+05 | |
| s = 1.0 | |
| XH = 0.75 | |
| n_hot = 1.0e-03 # cgs cm^-3 | |
| UNIT_LENGTH = 100*pc | |
| UNIT_DENSITY = n_hot*mu*mp | |
| UNIT_VELOCITY = 1*km/s | |
| gamma = 5/3. | |
| chi = 100 | |
| Tcl = 1.0e+04 | |
| kappa_sp = 5.7e-07*(8.0e+04)**2.5 # cgs (erg/cm/s/K) at 8e4 K | |
| kappa_sp = kappa_sp * (1.0e+06/8.0e+04)**2.5 # at 10^6 K | |
| eta_sp = 0.11 # *(8.0e+04/1.0e+06)**2.5 # cgs (g/cm/s) at 10^6 K, same as visc_mu | |
| Lbox = 1.0 # code | |
| mach_shear = 0.5 # relative velocity mach number | |
| n_cl = chi*n_hot | |
| v_sh = np.sqrt(gamma*kB*chi*Tcl/(mu*mp))*mach_shear/UNIT_VELOCITY # code | |
| bump_cool = 5.0e+00 | |
| Lambd_solar = interp1d(*np.loadtxt("cooltable-orig.dat", | |
| unpack=True), | |
| fill_value="extrapolate") | |
| temperature = np.logspace(np.log10(Tcl), np.log10(Tcl*chi), 100) | |
| cool_factor_min = np.min(temperature/(bump_cool*Lambd_solar(temperature))) | |
| cool_factor_max = np.max(temperature/(bump_cool*Lambd_solar(temperature))) | |
| # print("debug: ", cool_factor_max, cool_factor_min) | |
| kappa_sp = 5.7e-07*(8.0e+04)**2.5 # cgs (erg/cm/s/K) at 8e4 K | |
| kappa_sp = kappa_sp * (1.0e+06/8.0e+04)**2.5 # at 10^6 K | |
| eta_sp = 0.11 # *(8.0e+04/1.0e+06)**2.5 # cgs (g/cm/s) at 10^6 K | |
| custom_res = True | |
| def field_length(fk, Nres, Nwav, color): | |
| fnu = 0.5 | |
| kappa = fk*(mu*XH*n_hot*Lbox*UNIT_LENGTH/Nwav)**2/cool_factor_max | |
| eta = fnu*np.sqrt(chi)*(n_hot*mu*mp/200)*(v_sh*Lbox/Nwav)*UNIT_VELOCITY*UNIT_LENGTH # cgs; only v_sh & L_box in code units | |
| deltax_kappa = np.sqrt(fk*cool_factor_min/cool_factor_max)*Lbox/(Nres*Nwav)/chi # code | |
| Npoints = int(np.power(2, np.ceil(np.log(max(Lbox/deltax_kappa, Nres*Nwav/fnu))/np.log(2)))) | |
| kappa_code = kappa*((mu*mp/kB)/(UNIT_DENSITY*UNIT_VELOCITY*UNIT_LENGTH)) | |
| eta_code = eta/(UNIT_DENSITY*UNIT_VELOCITY*UNIT_LENGTH) | |
| print(f"kappa = {kappa_code:.2e} code = {kappa:.2e} erg/cm/s/K") | |
| print(f"kappa/kappa_sp({(chi*Tcl):.1e} K) = {(kappa/kappa_sp):.2e}") | |
| v_turb = v_sh/np.sqrt(chi) | |
| t_cool_mix = (gamma/(gamma-1))*(n_hot*kB*chi*Tcl)/((np.sqrt(chi)*n_hot*mu*XH)**2*(bump_cool*Lambd_solar(np.sqrt(chi)*Tcl))) # cgs | |
| # Nwav should not be in t_turb | |
| t_turb = Lbox*UNIT_LENGTH/(v_turb*UNIT_VELOCITY) # cgs | |
| Da = t_turb/t_cool_mix | |
| nu = eta/(0.5*n_hot*(1+chi)*mu*mp) # cgs | |
| Re = v_sh*Lbox*UNIT_VELOCITY*UNIT_LENGTH/(Nwav*nu) | |
| till = 5.0 | |
| tKH = np.sqrt(chi)*Lbox/v_sh # code | |
| if custom_res: | |
| Np_used = 256 | |
| deltax_used = Lbox/Np_used # code | |
| else: | |
| Np_used = Npoints | |
| deltax_used = deltax_kappa | |
| temperature = np.logspace(4, 6, 100) | |
| lF_all_phase = ((Lbox/Nwav) * | |
| (temperature/(chi*Tcl)) * | |
| np.sqrt(fk*temperature/(bump_cool*Lambd_solar(temperature))/cool_factor_max)) # code | |
| print(f"L_box/l_F_max = {(Lbox/np.max(lF_all_phase)):.2e}") | |
| # print(f"N_lambda/sqrt(fk) = {(Nwav/np.sqrt(fk)):.2e}") | |
| print(f"L_box/l_F_min = {(Lbox/np.min(lF_all_phase)):.2e}") | |
| plt.plot(temperature, lF_all_phase/deltax_used, color=color, label=rf"${fman(kappa/kappa_sp):.2f}\times10^{{ {int(fexp(kappa/kappa_sp))} }}$") | |
| plt.xlim(xmin=np.min(temperature), xmax=np.max(temperature)) | |
| lines = plt.hlines([Nres, Lbox/deltax_used], xmin=np.min(temperature), xmax=np.max(temperature), | |
| color="k", linestyle=":") | |
| # Extract segments (returns list of [[x0, y0], [x1, y1]]) | |
| segs = lines.get_segments() | |
| first_seg = segs[0] | |
| # Create an invisible Line2D object with the same coordinates | |
| fake_line = Line2D(first_seg[:, 0], first_seg[:, 1], visible=False) | |
| plt.gca().add_line(fake_line) | |
| x_data = fake_line.get_xdata() | |
| x_min, x_max = x_data.min(), x_data.max() | |
| target_x = x_min + 0.85 * (x_max - x_min) | |
| labelLine( | |
| fake_line, | |
| target_x, | |
| label=rf"$\ell_F/\Delta={Nres}$", | |
| align=True, | |
| yoffset=0.01, | |
| ha="right", | |
| fontsize=16, | |
| backgroundcolor="none", | |
| color="k" | |
| ) | |
| last_seg = segs[1] | |
| # Create an invisible Line2D object with the same coordinates | |
| fake_line = Line2D(last_seg[:, 0], last_seg[:, 1], visible=False) | |
| plt.gca().add_line(fake_line) | |
| x_data = fake_line.get_xdata() | |
| x_min, x_max = x_data.min(), x_data.max() | |
| target_x = x_min + 0.10 * (x_max - x_min) | |
| labelLine( | |
| fake_line, | |
| target_x, | |
| label=rf"$\ell_F/\Delta={Np_used}$", | |
| align=True, | |
| yoffset=0.01, | |
| ha="right", | |
| fontsize=16, | |
| backgroundcolor="none", | |
| color="k" | |
| ) | |
| return kappa, Np_used | |
| fk = 8.0e-06 | |
| Nres = 4 | |
| Nwav = 0.02 | |
| kappa, Np_used = field_length(fk, Nres, Nwav, colors[6]) | |
| fk = 8.0e-05 | |
| Nres = 4 | |
| Nwav = 0.02 | |
| kappa, Np_used = field_length(fk, Nres, Nwav, colors[1]) | |
| fk = 8.0e-04 | |
| Nres = 4 | |
| Nwav = 0.02 | |
| kappa, Np_used = field_length(fk, Nres, Nwav, colors[2]) | |
| fk = 8.0e-03 | |
| Nres = 4 | |
| Nwav = 0.02 | |
| kappa, Np_used = field_length(fk, Nres, Nwav, colors[3]) | |
| fk = 8.0e-02 | |
| Nres = 4 | |
| Nwav = 0.02 | |
| kappa, Np_used = field_length(fk, Nres, Nwav, colors[5]) | |
| lines = plt.gca().get_lines() | |
| for line in lines: | |
| pattern = r"(\d+\.?\d*)\s*\\times\s*10\^\{\s*(-?\d+)\s*\}" | |
| match = re.search(pattern, line.get_label()) | |
| if match: | |
| coeff = match.group(1) | |
| exp = match.group(2) | |
| # Combine into Python's scientific notation format (e.g., "3.29e-2") | |
| value = float(f"{coeff}e{exp}") | |
| # print(f"Original: {line.get_label()} => Result: {value}") | |
| else: | |
| continue | |
| kappa_line = value*kappa_sp #cgs | |
| # print(rf"$\kappa={fman(kappa_line):.2f} \times 10^{{ {int(fexp(kappa_line))} }} {{\rm erg/cm/s/K}}$") | |
| x_data = line.get_xdata() | |
| x_min, x_max = x_data.min(), x_data.max() | |
| target_x = x_min + 0.65 * (x_max - x_min) | |
| labelLine( | |
| line, | |
| target_x, | |
| label=rf"$\kappa={fman(kappa_line):.1f} \times 10^{{ {int(fexp(kappa_line))} }} {{\rm erg/cm/s/K}}$", | |
| align=True, | |
| yoffset=0.01, | |
| ha="right", | |
| fontsize=14, | |
| backgroundcolor="none", | |
| ) | |
| ymin, ymax = plt.gca().get_ylim() | |
| plt.fill_between(temperature, | |
| np.full(temperature.shape, 1.0), | |
| np.full(temperature.shape, ymin), | |
| color="gray", alpha=0.5) | |
| # plt.ylim(ymin=ymin, ymax=ymax) | |
| plt.legend(loc="upper left", prop={"size": 16}, ncol=1, | |
| title=rf"$\frac{{\kappa}}{{\kappa_{{\rm sp}}({fman(chi*Tcl):.1f} \times 10^{{ {int(fexp(chi*Tcl))} }} K)}}$", | |
| framealpha=0.5, shadow=False, fancybox=True) | |
| plt.xscale("log") | |
| plt.yscale("log") | |
| plt.xlabel(r"Temperature [K]") | |
| plt.ylabel(r"$\ell_{\rm F}/\Delta$") | |
| plt.title(rf"$L_{{\rm box}} = {(UNIT_LENGTH/pc):.1f}\ \rm pc$, $n_{{\rm hot}} = {fman(n_hot):.1f} \times 10^{{ {int(fexp(n_hot))} }}\ {{\rm cm^{{-3}}}}$, $\Lambda_{{\rm bump}}={bump_cool:.1f}$, $L_{{\rm box}}/\Delta = {Np_used}$") | |
| print(f"./lF-T-many-kappa-N_{Np_used}.{extension}") | |
| plt.savefig(f"./lF-T-many-kappa-N_{Np_used}.{extension}", | |
| transparent=transparent, | |
| bbox_inches="tight") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" width="864.90939" height="669.0656" viewBox="0 0 864.90939 669.0656"> | |
| <defs> | |
| <clipPath id="clip_1"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_2"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_3"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_4"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_5"> | |
| <path transform="matrix(.0182,0,0,-.0182,75.64219,557.28237)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_6"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_7"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_8"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_9"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_10"> | |
| <path transform="matrix(0,-.028,-.028,-0,28.2625,340.9)" d="M-1016-351H1660V1068H-1016Z"/> | |
| </clipPath> | |
| <clipPath id="clip_11"> | |
| <path transform="matrix(0,-.028,-.028,-0,28.2625,307.86054)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_12"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_13"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_14"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_15"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_16"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_17"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_18"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_19"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_20"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_21"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_22"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_23"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_24"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_25"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_26"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_27"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_28"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_29"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_30"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_31"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_32"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_33"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_34"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_35"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_36"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_37"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.7094V631.86569H109.30937Z"/> | |
| </clipPath> | |
| <clipPath id="clip_38"> | |
| <path transform="matrix(.0168,0,0,-.0168,452.8089,19.668763)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_39"> | |
| <path transform="matrix(.0168,0,0,-.0168,522.8272,19.668763)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_40"> | |
| <path transform="matrix(.024,0,0,-.024,563.5065,28.856263)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_41"> | |
| <path transform="matrix(.024,0,0,-.024,765.0362,28.856263)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_42"> | |
| <path transform="matrix(.0154,0,0,-.0154,182.90938,60.02185)" d="M-1016-351H1660V1068H-1016Z"/> | |
| </clipPath> | |
| <clipPath id="clip_43"> | |
| <path transform="matrix(.0154,0,0,-.0154,129.90938,80.792949)" d="M-1016-351H1660V1068H-1016Z"/> | |
| </clipPath> | |
| <clipPath id="clip_44"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,100.44216)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_45"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,124.58435)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_46"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,148.58435)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| <clipPath id="clip_47"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,172.44217)" d="M-1021-463H1794V1233H-1021Z"/> | |
| </clipPath> | |
| </defs> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M0 0H864.90939V669.0656H0Z" fill="#ffffff"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562H834.70938V631.8656H109.30937Z" fill="#ffffff"/> | |
| <g clip-path="url(#clip_1)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M109.30937 77.46562V631.8656"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 77.46562V88.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 77.46562V88.46562"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 86.30937 621.35)" font-size="26" font-family="DejaVuSans"><tspan y="-.7796875" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 86.30937 621.35)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.732813" x="33.332815">4</tspan></text> | |
| <g clip-path="url(#clip_2)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M472.00938 77.46562V631.8656"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M472.00938 77.46562V88.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M472.00938 77.46562V88.46562"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 449.00938 621.35)" font-size="26" font-family="DejaVuSans"><tspan y="-.7796875" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 449.00938 621.35)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.732813" x="33.332815">5</tspan></text> | |
| <g clip-path="url(#clip_3)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M834.70938 77.46562V631.8656"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 77.46562V88.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 77.46562V88.46562"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 811.70938 621.35)" font-size="26" font-family="DejaVuSans"><tspan y="-.5390625" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 811.70938 621.35)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.4921879" x="33.332815">6</tspan></text> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M218.49295 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M218.49295 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M282.36128 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M282.36128 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M327.67655 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M327.67655 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M362.8258 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M362.8258 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M391.54484 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M391.54484 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M415.82646 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M415.82646 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M436.8601 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M436.8601 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M455.41316 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M455.41316 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M581.19296 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M581.19296 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M645.0613 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M645.0613 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M690.3765 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M690.3765 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M725.5258 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M725.5258 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M754.2448 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M754.2448 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M778.5264 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M778.5264 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M799.5601 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M799.5601 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M818.11318 77.46562V82.46562"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M818.11318 77.46562V82.46562"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 358.74375 656.0375)" font-size="28" font-family="DejaVuSans"><tspan y="0" x="0 12.358 29.578001 56.850004 74.630008 91.850009 103.35801 120.52201 131.49802 149.25002 160.14864 177.36864 186.27265 197.19264 215.56064">Temperature [K]</tspan></text> | |
| <g clip-path="url(#clip_4)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M109.30937 110.92546H834.70938"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 110.92546H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 110.92546H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 110.92546H823.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 110.92546H823.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 42.309377 568.01516)" font-size="26" font-family="DejaVuSans"><tspan y="-.7796875" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 42.309377 568.01516)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.732813" x="48.58242">1</tspan></text> | |
| <g clip-path="url(#clip_5)"> | |
| <path transform="matrix(.0182,0,0,-.0182,75.64219,557.28237)" d="M106 355H732V272H106V355Z"/> | |
| </g> | |
| <g clip-path="url(#clip_6)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M109.30937 219.6701H834.70938"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 219.6701H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 219.6701H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 219.6701H823.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 219.6701H823.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 459.2705)" font-size="26" font-family="DejaVuSans"><tspan y="-.5390625" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 459.2705)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.4921879" x="33.332815">0</tspan></text> | |
| <g clip-path="url(#clip_7)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M109.30937 328.41474H834.70938"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 328.41474H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 328.41474H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 328.41474H823.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 328.41474H823.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 350.52589)" font-size="26" font-family="DejaVuSans"><tspan y="-.7796875" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 350.52589)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.732813" x="33.332815">1</tspan></text> | |
| <g clip-path="url(#clip_8)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M109.30937 437.1594H834.70938"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 437.1594H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 437.1594H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 437.1594H823.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 437.1594H823.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 241.78125)" font-size="26" font-family="DejaVuSans"><tspan y="-.5390625" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 241.78125)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.4921879" x="33.332815">2</tspan></text> | |
| <g clip-path="url(#clip_9)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width=".8" stroke-linecap="round" stroke-dasharray=".8,1.32" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".3" d="M109.30937 545.904H834.70938"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 545.904H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 545.904H120.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 545.904H823.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1.2" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 545.904H823.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 133.03662)" font-size="26" font-family="DejaVuSans"><tspan y="-.5390625" x="0 16.541993">10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 57.309377 133.03662)" font-size="18.2" font-family="DejaVuSans"><tspan y="-10.4921879" x="33.332815">3</tspan></text> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 78.19006H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 78.19006H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 78.19006H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 78.19006H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 86.8006H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 86.8006H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 86.8006H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 86.8006H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 94.0807H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 94.0807H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 94.0807H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 94.0807H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 100.38702H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 100.38702H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 100.38702H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 100.38702H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 105.94958H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 105.94958H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 105.94958H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 105.94958H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 143.66086H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 143.66086H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 143.66086H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 143.66086H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 162.80985H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 162.80985H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 162.80985H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 162.80985H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 176.39626H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 176.39626H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 176.39626H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 176.39626H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 186.93471H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 186.93471H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 186.93471H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 186.93471H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 195.54524H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 195.54524H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 195.54524H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 195.54524H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 202.82535H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 202.82535H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 202.82535H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 202.82535H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 209.13166H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 209.13166H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 209.13166H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 209.13166H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 214.69422H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 214.69422H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 214.69422H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 214.69422H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 252.4055H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 252.4055H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 252.4055H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 252.4055H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 271.55448H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 271.55448H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 271.55448H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 271.55448H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 285.1409H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 285.1409H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 285.1409H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 285.1409H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 295.67936H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 295.67936H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 295.67936H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 295.67936H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 304.2899H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 304.2899H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 304.2899H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 304.2899H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 311.56999H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 311.56999H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 311.56999H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 311.56999H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 317.87629H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 317.87629H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 317.87629H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 317.87629H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 323.43885H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 323.43885H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 323.43885H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 323.43885H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 361.15016H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 361.15016H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 361.15016H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 361.15016H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 380.2991H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 380.2991H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 380.2991H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 380.2991H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 393.88554H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 393.88554H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 393.88554H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 393.88554H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 404.42399H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 404.42399H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 404.42399H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 404.42399H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 413.03453H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 413.03453H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 413.03453H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 413.03453H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 420.31465H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 420.31465H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 420.31465H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 420.31465H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 426.62095H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 426.62095H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 426.62095H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 426.62095H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 432.1835H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 432.1835H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 432.1835H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 432.1835H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 469.89479H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 469.89479H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 469.89479H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 469.89479H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 489.04377H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 489.04377H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 489.04377H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 489.04377H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 502.6302H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 502.6302H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 502.6302H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 502.6302H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 513.16867H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 513.16867H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 513.16867H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 513.16867H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 521.7792H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 521.7792H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 521.7792H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 521.7792H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 529.05929H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 529.05929H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 529.05929H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 529.05929H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 535.3656H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 535.3656H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 535.3656H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 535.3656H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 540.92819H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 540.92819H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 540.92819H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 540.92819H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 578.6394H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 578.6394H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 578.6394H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 578.6394H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 597.7884H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 597.7884H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 597.7884H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 597.7884H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 611.3748H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 611.3748H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 611.3748H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 611.3748H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 621.91329H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 621.91329H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 621.91329H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 621.91329H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937 630.5238H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 630.5238H114.30937"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M834.70938 630.5238H829.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#000000" d="M834.70938 630.5238H829.70938"/> | |
| <text xml:space="preserve" transform="matrix(0 -1 1 0 28.48125 340.9)" font-size="19.6" font-family="DejaVuSans"><tspan y="4.375" x="11.566406">F</tspan></text> | |
| <text xml:space="preserve" transform="matrix(0 -1 1 0 28.48125 340.9)" font-size="28" font-family="DejaVuSans"><tspan y="-.21875" x="23.60586">/</tspan></text> | |
| <g clip-path="url(#clip_10)"> | |
| <path transform="matrix(0,-.028,-.028,-0,28.2625,340.9)" d="M148 131C161 65 182 33 211 33 229 33 251 51 276 89H341C321 56 300 31 277 14 252-4 228-13 206-13 155-13 119 9 99 54L63 0H-13C21 48 52 94 78 139 74 164 73 190 73 218 73 267 78 317 88 367 126 553 162 665 196 703 219 729 251 742 292 742 332 742 353 714 353 658 352 632 349 604 343 574 319 450 254 302 148 131ZM148 259C208 372 248 474 267 564 277 612 282 642 282 655 282 677 278 688 270 688 234 660 200 561 169 393 160 345 153 301 148 259Z"/> | |
| </g> | |
| <g clip-path="url(#clip_11)"> | |
| <path transform="matrix(0,-.028,-.028,-0,28.2625,307.86054)" d="M342 632 142 82H542L342 632ZM8 0 286 729H398L676 0H8Z"/> | |
| </g> | |
| <g clip-path="url(#clip_12)"> | |
| <g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M109.30937-108524.97V219.6701H116.63665 123.96392 131.2912 138.61847 145.94574 153.27301 160.60028 167.92755 175.25484 182.5821 189.90938 197.23665 204.56392 211.89119 219.21846 226.54575 233.87302 241.20029 248.52756 255.85483 263.1821 270.50938 277.83665 285.1639 292.49119 299.81846 307.14576 314.47303 321.8003 329.12757 336.45484 343.7821 351.10939 358.43666 365.76393 373.0912 380.41847 387.74574 395.073 402.4003 409.72758 417.05485 424.3821 431.70939 439.03666 446.36393 453.6912 461.01847 468.34574 475.673 483.00028 490.32756 497.65483 504.98213 512.3094 519.63668 526.9639 534.2912 541.61849 548.94577 556.273 563.6003 570.92758 578.2548 585.5821 592.90939 600.23666 607.5639 614.8912 622.21847 629.5457 636.873 644.20028 651.5275 658.85488 666.1821 673.5094 680.8367 688.16397 695.4912 702.8185 710.14578 717.473 724.8003 732.12759 739.45486 746.7821 754.1094 761.43667 768.7639 776.0912 783.41848 790.7457 798.073 805.40029 812.72756 820.0548 827.3821 834.70938V-108524.97H827.3821 820.0548 812.72756 805.40029 798.073 790.7457 783.41848 776.0912 768.7639 761.43667 754.1094 746.7821 739.45486 732.12759 724.8003 717.473 710.14578 702.8185 695.4912 688.16397 680.8367 673.5094 666.1821 658.85488 651.5275 644.20028 636.873 629.5457 622.21847 614.8912 607.5639 600.23666 592.90939 585.5821 578.2548 570.92758 563.6003 556.273 548.94577 541.61849 534.2912 526.9639 519.63668 512.3094 504.98213 497.65483 490.32756 483.00028 475.673 468.34574 461.01847 453.6912 446.36393 439.03666 431.70939 424.3821 417.05485 409.72758 402.4003 395.073 387.74574 380.41847 373.0912 365.76393 358.43666 351.10939 343.7821 336.45484 329.12757 321.8003 314.47303 307.14576 299.81846 292.49119 285.1639 277.83665 270.50938 263.1821 255.85483 248.52756 241.20029 233.87302 226.54575 219.21846 211.89119 204.56392 197.23665 189.90938 182.5821 175.25484 167.92755 160.60028 153.27301 145.94574 138.61847 131.2912 123.96392 116.63665 109.30937Z" fill="#808080" fill-opacity=".5"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#808080" stroke-opacity=".5" d="M109.30937-108524.97V219.6701H116.63665 123.96392 131.2912 138.61847 145.94574 153.27301 160.60028 167.92755 175.25484 182.5821 189.90938 197.23665 204.56392 211.89119 219.21846 226.54575 233.87302 241.20029 248.52756 255.85483 263.1821 270.50938 277.83665 285.1639 292.49119 299.81846 307.14576 314.47303 321.8003 329.12757 336.45484 343.7821 351.10939 358.43666 365.76393 373.0912 380.41847 387.74574 395.073 402.4003 409.72758 417.05485 424.3821 431.70939 439.03666 446.36393 453.6912 461.01847 468.34574 475.673 483.00028 490.32756 497.65483 504.98213 512.3094 519.63668 526.9639 534.2912 541.61849 548.94577 556.273 563.6003 570.92758 578.2548 585.5821 592.90939 600.23666 607.5639 614.8912 622.21847 629.5457 636.873 644.20028 651.5275 658.85488 666.1821 673.5094 680.8367 688.16397 695.4912 702.8185 710.14578 717.473 724.8003 732.12759 739.45486 746.7821 754.1094 761.43667 768.7639 776.0912 783.41848 790.7457 798.073 805.40029 812.72756 820.0548 827.3821 834.70938V-108524.97H827.3821 820.0548 812.72756 805.40029 798.073 790.7457 783.41848 776.0912 768.7639 761.43667 754.1094 746.7821 739.45486 732.12759 724.8003 717.473 710.14578 702.8185 695.4912 688.16397 680.8367 673.5094 666.1821 658.85488 651.5275 644.20028 636.873 629.5457 622.21847 614.8912 607.5639 600.23666 592.90939 585.5821 578.2548 570.92758 563.6003 556.273 548.94577 541.61849 534.2912 526.9639 519.63668 512.3094 504.98213 497.65483 490.32756 483.00028 475.673 468.34574 461.01847 453.6912 446.36393 439.03666 431.70939 424.3821 417.05485 409.72758 402.4003 395.073 387.74574 380.41847 373.0912 365.76393 358.43666 351.10939 343.7821 336.45484 329.12757 321.8003 314.47303 307.14576 299.81846 292.49119 285.1639 277.83665 270.50938 263.1821 255.85483 248.52756 241.20029 233.87302 226.54575 219.21846 211.89119 204.56392 197.23665 189.90938 182.5821 175.25484 167.92755 160.60028 153.27301 145.94574 138.61847 131.2912 123.96392 116.63665 109.30937Z"/> | |
| </g> | |
| </g> | |
| <g clip-path="url(#clip_13)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#dc143c" d="M109.30937 159.01222 116.63665 156.18602 123.96392 152.51795 131.2912 147.95836 138.61847 142.83687 145.94574 137.0615 153.27301 130.81858 160.60028 123.84509 167.92755 116.75249 175.25484 110.07204 182.5821 105.1782 189.90938 102.681247 197.23665 102.66563 204.56392 104.67192 211.89119 108.04695 219.21846 112.24611 226.54575 116.86959 233.87302 121.60632 241.20029 126.26997 248.52756 130.71506 255.85483 134.85456 263.1821 138.64675 270.50938 142.09906 277.83665 145.26792 285.1639 148.21446 292.49119 150.97992 299.81846 153.56874 307.14576 155.98535 314.47303 158.24486 321.8003 160.333 329.12757 162.28127 336.45484 164.09725 343.7821 165.8145 351.10939 167.45194 358.43666 169.01941 365.76393 170.53035 373.0912 171.97588 380.41847 173.34813 387.74574 174.65552 395.073 175.89144 402.4003 177.09644 409.72758 178.31259 417.05485 179.62152 424.3821 181.1124 431.70939 182.85475 439.03666 184.89766 446.36393 187.23419 453.6912 189.82323 461.01847 192.63199 468.34574 195.65135 475.673 198.90737 483.00028 202.43894 490.32756 206.21811 497.65483 210.13988 504.98213 214.03566 512.3094 217.76702 519.63668 221.25226 526.9639 224.4881 534.2912 227.52172 541.61849 230.42957 548.94577 233.29044 556.273 236.1696 563.6003 239.11157 570.92758 242.11425 578.2548 245.14476 585.5821 248.16548 592.90939 251.18231 600.23666 254.2382 607.5639 257.42 614.8912 260.85914 622.21847 264.71769 629.5457 269.14973 636.873 274.25645 644.20028 280.0195 651.5275 286.26 658.85488 292.67808 666.1821 298.99 673.5094 304.9155 680.8367 310.3691 688.16397 315.307 695.4912 319.76576 702.8185 323.8442 710.14578 327.63523 717.473 331.24476 724.8003 334.77595 732.12759 338.33305 739.45486 342.00077 746.7821 345.82926 754.1094 349.81019 761.43667 353.87767 768.7639 357.92494 776.0912 361.85609 783.41848 365.6195 790.7457 369.21015 798.073 372.65794 805.40029 375.99705 812.72756 379.2733 820.0548 382.5388 827.3821 385.83058 834.70938 389.17637"/> | |
| </g> | |
| <g clip-path="url(#clip_14)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 285.1409H834.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 481.55329H834.70938"/> | |
| </g> | |
| <g clip-path="url(#clip_15)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#9acd32" d="M109.30937 213.38454 116.63665 210.55834 123.96392 206.89028 131.2912 202.33069 138.61847 197.20919 145.94574 191.4338 153.27301 185.19089 160.60028 178.21743 167.92755 171.1248 175.25484 164.44435 182.5821 159.55052 189.90938 157.05356 197.23665 157.03795 204.56392 159.04424 211.89119 162.41927 219.21846 166.61843 226.54575 171.24192 233.87302 175.97864 241.20029 180.64229 248.52756 185.08737 255.85483 189.22687 263.1821 193.01906 270.50938 196.47138 277.83665 199.64023 285.1639 202.58678 292.49119 205.35225 299.81846 207.94107 307.14576 210.35768 314.47303 212.61717 321.8003 214.70532 329.12757 216.6536 336.45484 218.46956 343.7821 220.18682 351.10939 221.82425 358.43666 223.39174 365.76393 224.90268 373.0912 226.3482 380.41847 227.72046 387.74574 229.02785 395.073 230.26377 402.4003 231.46875 409.72758 232.6849 417.05485 233.99384 424.3821 235.48473 431.70939 237.22708 439.03666 239.26999 446.36393 241.60652 453.6912 244.19556 461.01847 247.0043 468.34574 250.02367 475.673 253.2797 483.00028 256.81126 490.32756 260.59043 497.65483 264.5122 504.98213 268.40797 512.3094 272.13935 519.63668 275.62458 526.9639 278.8604 534.2912 281.89405 541.61849 284.80189 548.94577 287.66276 556.273 290.54194 563.6003 293.4839 570.92758 296.48658 578.2548 299.5171 585.5821 302.53779 592.90939 305.55464 600.23666 308.61054 607.5639 311.79237 614.8912 315.23146 622.21847 319.09 629.5457 323.52204 636.873 328.62876 644.20028 334.3918 651.5275 340.63236 658.85488 347.0504 666.1821 353.3623 673.5094 359.2878 680.8367 364.74143 688.16397 369.67933 695.4912 374.13807 702.8185 378.21653 710.14578 382.00755 717.473 385.6171 724.8003 389.14826 732.12759 392.70536 739.45486 396.37309 746.7821 400.2016 754.1094 404.1825 761.43667 408.25 768.7639 412.29728 776.0912 416.2284 783.41848 419.99183 790.7457 423.58247 798.073 427.03025 805.40029 430.3694 812.72756 433.6456 820.0548 436.9111 827.3821 440.20289 834.70938 443.54869"/> | |
| </g> | |
| <g clip-path="url(#clip_16)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 285.1409H834.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 481.55329H834.70938"/> | |
| </g> | |
| <g clip-path="url(#clip_17)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#4682b4" d="M109.30937 267.75688 116.63665 264.93067 123.96392 261.2626 131.2912 256.703 138.61847 251.58152 145.94574 245.80612 153.27301 239.56322 160.60028 232.58974 167.92755 225.49713 175.25484 218.81668 182.5821 213.92284 189.90938 211.42589 197.23665 211.41027 204.56392 213.41655 211.89119 216.7916 219.21846 220.99074 226.54575 225.61423 233.87302 230.35097 241.20029 235.01462 248.52756 239.45969 255.85483 243.5992 263.1821 247.39139 270.50938 250.84369 277.83665 254.01256 285.1639 256.9591 292.49119 259.72459 299.81846 262.3134 307.14576 264.73 314.47303 266.9895 321.8003 269.07765 329.12757 271.0259 336.45484 272.8419 343.7821 274.55915 351.10939 276.19657 358.43666 277.76405 365.76393 279.275 373.0912 280.72053 380.41847 282.09278 387.74574 283.40019 395.073 284.63609 402.4003 285.84107 409.72758 287.05723 417.05485 288.36616 424.3821 289.85707 431.70939 291.5994 439.03666 293.6423 446.36393 295.97883 453.6912 298.56788 461.01847 301.37663 468.34574 304.396 475.673 307.652 483.00028 311.1836 490.32756 314.96278 497.65483 318.88453 504.98213 322.7803 512.3094 326.51167 519.63668 329.99693 526.9639 333.23274 534.2912 336.26637 541.61849 339.17424 548.94577 342.03507 556.273 344.91426 563.6003 347.8562 570.92758 350.8589 578.2548 353.8894 585.5821 356.91014 592.90939 359.92695 600.23666 362.98286 607.5639 366.16468 614.8912 369.60377 622.21847 373.4623 629.5457 377.89436 636.873 383.00108 644.20028 388.76414 651.5275 395.00468 658.85488 401.42274 666.1821 407.73466 673.5094 413.66014 680.8367 419.11375 688.16397 424.05165 695.4912 428.5104 702.8185 432.58885 710.14578 436.37986 717.473 439.9894 724.8003 443.52058 732.12759 447.07768 739.45486 450.7454 746.7821 454.5739 754.1094 458.5548 761.43667 462.6223 768.7639 466.6696 776.0912 470.6007 783.41848 474.36415 790.7457 477.95478 798.073 481.40257 805.40029 484.7417 812.72756 488.0179 820.0548 491.28343 827.3821 494.5752 834.70938 497.921"/> | |
| </g> | |
| <g clip-path="url(#clip_18)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 285.1409H834.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 481.55329H834.70938"/> | |
| </g> | |
| <g clip-path="url(#clip_19)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#9932cc" d="M109.30937 322.12919 116.63665 319.30299 123.96392 315.63493 131.2912 311.07533 138.61847 305.95384 145.94574 300.17845 153.27301 293.93553 160.60028 286.96208 167.92755 279.86946 175.25484 273.189 182.5821 268.29518 189.90938 265.79823 197.23665 265.7826 204.56392 267.78889 211.89119 271.1639 219.21846 275.36308 226.54575 279.98655 233.87302 284.72328 241.20029 289.38694 248.52756 293.832 255.85483 297.9715 263.1821 301.7637 270.50938 305.216 277.83665 308.3849 285.1639 311.33143 292.49119 314.0969 299.81846 316.6857 307.14576 319.10234 314.47303 321.36183 321.8003 323.44996 329.12757 325.39823 336.45484 327.2142 343.7821 328.93147 351.10939 330.56889 358.43666 332.13639 365.76393 333.6473 373.0912 335.09284 380.41847 336.4651 387.74574 337.7725 395.073 339.0084 402.4003 340.2134 409.72758 341.42955 417.05485 342.73847 424.3821 344.22938 431.70939 345.9717 439.03666 348.01463 446.36393 350.35118 453.6912 352.9402 461.01847 355.74897 468.34574 358.7683 475.673 362.02433 483.00028 365.5559 490.32756 369.33509 497.65483 373.25685 504.98213 377.15263 512.3094 380.88398 519.63668 384.36924 526.9639 387.60505 534.2912 390.63868 541.61849 393.54655 548.94577 396.4074 556.273 399.28657 563.6003 402.22853 570.92758 405.2312 578.2548 408.26173 585.5821 411.28245 592.90939 414.2993 600.23666 417.35517 607.5639 420.537 614.8912 423.9761 622.21847 427.83464 629.5457 432.26667 636.873 437.37339 644.20028 443.13648 651.5275 449.37699 658.85488 455.79505 666.1821 462.10697 673.5094 468.03245 680.8367 473.48606 688.16397 478.42396 695.4912 482.88273 702.8185 486.96116 710.14578 490.75218 717.473 494.36174 724.8003 497.89289 732.12759 501.44999 739.45486 505.1177 746.7821 508.94624 754.1094 512.9271 761.43667 516.9946 768.7639 521.0419 776.0912 524.973 783.41848 528.73648 790.7457 532.3271 798.073 535.7749 805.40029 539.114 812.72756 542.39028 820.0548 545.65579 827.3821 548.9475 834.70938 552.29336"/> | |
| </g> | |
| <g clip-path="url(#clip_20)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 285.1409H834.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 481.55329H834.70938"/> | |
| </g> | |
| <g clip-path="url(#clip_21)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#daa520" d="M109.30937 376.5015 116.63665 373.6753 123.96392 370.00724 131.2912 365.44764 138.61847 360.32615 145.94574 354.55076 153.27301 348.30787 160.60028 341.33439 167.92755 334.24177 175.25484 327.5613 182.5821 322.66749 189.90938 320.17054 197.23665 320.1549 204.56392 322.1612 211.89119 325.53623 219.21846 329.73539 226.54575 334.35887 233.87302 339.0956 241.20029 343.75926 248.52756 348.2043 255.85483 352.34385 263.1821 356.13603 270.50938 359.58836 277.83665 362.7572 285.1639 365.70375 292.49119 368.4692 299.81846 371.058 307.14576 373.47465 314.47303 375.73414 321.8003 377.82228 329.12757 379.77055 336.45484 381.58653 343.7821 383.30378 351.10939 384.94123 358.43666 386.5087 365.76393 388.01963 373.0912 389.46516 380.41847 390.8374 387.74574 392.1448 395.073 393.3807 402.4003 394.58573 409.72758 395.80189 417.05485 397.1108 424.3821 398.60169 431.70939 400.34403 439.03666 402.38694 446.36393 404.72349 453.6912 407.3125 461.01847 410.12129 468.34574 413.14064 475.673 416.39665 483.00028 419.92823 490.32756 423.7074 497.65483 427.62916 504.98213 431.52494 512.3094 435.2563 519.63668 438.74156 526.9639 441.97737 534.2912 445.011 541.61849 447.91886 548.94577 450.77973 556.273 453.65888 563.6003 456.60087 570.92758 459.60353 578.2548 462.63404 585.5821 465.65476 592.90939 468.6716 600.23666 471.72749 607.5639 474.9093 614.8912 478.34843 622.21847 482.20695 629.5457 486.63899 636.873 491.7457 644.20028 497.5088 651.5275 503.7493 658.85488 510.16737 666.1821 516.47927 673.5094 522.4048 680.8367 527.8584 688.16397 532.79629 695.4912 537.255 702.8185 541.3335 710.14578 545.1245 717.473 548.7341 724.8003 552.2652 732.12759 555.8223 739.45486 559.49008 746.7821 563.31857 754.1094 567.29946 761.43667 571.36697 768.7639 575.41427 776.0912 579.34536 783.41848 583.10879 790.7457 586.6994 798.073 590.1472 805.40029 593.4863 812.72756 596.7626 820.0548 600.0281 827.3821 603.3198 834.70938 606.66567"/> | |
| </g> | |
| <g clip-path="url(#clip_22)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 285.1409H834.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="butt" stroke-dasharray="3.5,5.775" stroke-linejoin="round" fill="none" stroke="#000000" d="M109.30937 481.55329H834.70938"/> | |
| </g> | |
| <g clip-path="url(#clip_23)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| </g> | |
| <g clip-path="url(#clip_24)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| </g> | |
| <g clip-path="url(#clip_25)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| </g> | |
| <g clip-path="url(#clip_26)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| </g> | |
| <g clip-path="url(#clip_27)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| </g> | |
| <g clip-path="url(#clip_28)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| </g> | |
| <g clip-path="url(#clip_29)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| </g> | |
| <g clip-path="url(#clip_30)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| </g> | |
| <g clip-path="url(#clip_31)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M751.7623 283.06477C751.9757 282.0231 752.309 281.50227 752.7623 281.50227 753.064 281.50227 753.4107 281.80143 753.80239 282.39976H754.83987C754.5282 281.8681 754.1898 281.46476 753.8248 281.18977 753.4299 280.89143 753.04989 280.74226 752.6849 280.74226 751.8715 280.74226 751.30068 281.10478 750.97238 281.82975L750.3873 280.96977H749.16738C749.73068 281.73475 750.2207 282.47477 750.6373 283.18977 750.5857 283.59477 750.5599 284.01893 750.5599 284.46226 750.5599 285.25395 750.6407 286.0456 750.80239 286.83726 751.4107 289.81059 751.98568 291.60227 752.52737 292.21226 752.90237 292.6339 753.4107 292.84477 754.05239 292.84477 754.70236 292.84477 755.02737 292.39393 755.02737 291.49226 755.02236 291.08726 754.9732 290.64225 754.8798 290.15727 754.5048 288.17225 753.4657 285.80809 751.7623 283.06477ZM751.7548 285.10975C752.7282 286.9231 753.36318 288.55393 753.65988 290.00227 753.8165 290.76725 753.89486 291.24894 753.89486 291.44728 753.89486 291.8056 753.82986 291.98475 753.6998 291.98475 753.13156 291.53144 752.59487 289.95643 752.08987 287.25978 751.9498 286.50477 751.8382 285.7881 751.7548 285.10975ZM757.8885 286.51026H762.5697L762.38949 285.57926H758.80728L758.3382 283.173H761.57577L761.39376 282.24375H758.15628L757.3967 278.34477H756.2977L757.8885 286.51026ZM766.9389 292.63478H768.2664L764.2039 279.48475H762.8764L766.9389 292.63478ZM773.73709 291.07975 770.53207 282.28227H776.947L773.73709 291.07975ZM768.392 280.96977 772.84457 292.63478H774.6345L779.0795 280.96977H768.392ZM784.02456 288.23475H794.03958V286.92225H784.02456V288.23475ZM784.02456 285.04725H794.03958V283.71977H784.02456V285.04725ZM804.90048 291.25978 800.91549 285.03227H804.90048V291.25978ZM804.4855 292.63478H806.47048V285.03227H808.1355V283.71977H806.47048V280.96977H804.90048V283.71977H799.6355V285.24226L804.4855 292.63478Z"/> | |
| </g> | |
| <g clip-path="url(#clip_32)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M406.95896 479.36109C407.1723 478.3194 407.50566 477.79859 407.95896 477.79859 408.26063 477.79859 408.6073 478.09776 408.99897 478.69609H410.03648C409.7248 478.1644 409.38648 477.76109 409.02146 477.48609 408.62648 477.18775 408.24647 477.03858 407.88148 477.03858 407.06816 477.03858 406.49729 477.40107 406.16899 478.12608L405.58396 477.26609H404.36396C404.9273 478.03108 405.4173 478.77107 405.83396 479.48609 405.7823 479.89109 405.75648 480.31526 405.75648 480.75859 405.75648 481.55024 405.8373 482.3419 405.99897 483.13359 406.6073 486.1069 407.1823 487.89857 407.72398 488.50859 408.09898 488.93025 408.6073 489.14109 409.24897 489.14109 409.89897 489.14109 410.22398 488.69026 410.22398 487.78858 410.21897 487.38359 410.1698 486.93858 410.07649 486.45359 409.70149 484.46858 408.6623 482.1044 406.95896 479.36109ZM406.95149 481.40608C407.9248 483.2194 408.55979 484.85026 408.85649 486.29859 409.01313 487.06358 409.09147 487.54524 409.09147 487.74357 409.09147 488.1019 409.02647 488.28108 408.89646 488.28108 408.32814 487.82774 407.79148 486.25276 407.28648 483.55607 407.14646 482.80107 407.0348 482.0844 406.95149 481.40608ZM413.08509 482.80659H417.76634L417.5861 481.87559H414.00386L413.53486 479.46934H416.77235L416.59034 478.54008H413.35285L412.59336 474.64109H411.49436L413.08509 482.80659ZM422.13554 488.93107H423.46305L419.40055 475.78108H418.07304L422.13554 488.93107ZM428.93367 487.37608 425.72868 478.57859H432.14366L428.93367 487.37608ZM423.58866 477.26609 428.04118 488.93107H429.83116L434.27616 477.26609H423.58866ZM439.22117 484.53108H449.23616V483.21858H439.22117V484.53108ZM439.22117 481.34358H449.23616V480.01609H439.22117V481.34358ZM457.1196 478.59358H462.6271V477.26609H455.22209V478.59358C455.82044 479.21357 456.63627 480.04524 457.6696 481.08857 458.7046 482.13359 459.35459 482.80775 459.6196 483.11109 460.1246 483.67774 460.47709 484.15776 460.6771 484.55107 460.87876 484.9444 460.97959 485.33106 460.97959 485.71107 460.97959 486.33106 460.7621 486.83607 460.3271 487.22608 459.8921 487.61775 459.3254 487.81358 458.6271 487.81358 458.13209 487.81358 457.6096 487.72773 457.0596 487.55607 456.51127 487.3844 455.9246 487.12358 455.2996 486.77357V488.36857C455.9346 488.62358 456.52793 488.81608 457.0796 488.94609 457.63294 489.07609 458.13877 489.14109 458.59709 489.14109 459.80543 489.14109 460.76878 488.83857 461.4871 488.23359 462.2054 487.63026 462.5646 486.82359 462.5646 485.81358 462.5646 485.33357 462.47459 484.87858 462.2946 484.44859 462.11628 484.02024 461.78959 483.5144 461.3146 482.93107 461.1846 482.7794 460.77043 482.34275 460.07209 481.62107 459.37544 480.8994 458.39128 479.89024 457.1196 478.59358ZM465.9568 488.93107H472.15177V487.60108H467.40177V484.74357C467.63014 484.8219 467.85847 484.88026 468.0868 484.91859 468.31678 484.9569 468.54679 484.97608 468.77677 484.97608 470.07844 484.97608 471.10929 484.61943 471.8693 483.90608 472.63096 483.19276 473.01179 482.2269 473.01179 481.00859 473.01179 479.75358 472.62095 478.77775 471.83927 478.08106 471.05763 477.38609 469.95594 477.03858 468.53428 477.03858 468.04429 477.03858 467.5451 477.08024 467.03678 477.16358 466.53013 477.2469 466.00596 477.3719 465.46427 477.53858V479.12608C465.93263 478.87107 466.41679 478.68107 466.91679 478.55607 467.41679 478.43107 467.9451 478.36857 468.50178 478.36857 469.40345 478.36857 470.1168 478.60523 470.64179 479.07859 471.16847 479.5519 471.4318 480.19523 471.4318 481.00859 471.4318 481.82023 471.16847 482.46275 470.64179 482.93608 470.1168 483.41108 469.40345 483.64857 468.50178 483.64857 468.0801 483.64857 467.65928 483.6019 467.2393 483.50859 466.82096 483.41523 466.39344 483.2694 465.9568 483.07109V488.93107ZM479.69148 483.72608C478.98313 483.72608 478.42149 483.48359 478.00648 482.99858 477.59315 482.51524 477.38648 481.8519 477.38648 481.00859 477.38648 480.17024 477.59315 479.5069 478.00648 479.01856 478.42149 478.5319 478.98313 478.28858 479.69148 478.28858 480.3998 478.28858 480.96064 478.5319 481.37397 479.01856 481.7873 479.5069 481.99397 480.17024 481.99397 481.00859 481.99397 481.8519 481.7873 482.51524 481.37397 482.99858 480.96064 483.48359 480.3998 483.72608 479.69148 483.72608ZM482.82398 488.67359V487.23609C482.4273 487.42274 482.0273 487.56526 481.62397 487.66358 481.22065 487.76359 480.82063 487.81358 480.42399 487.81358 479.3823 487.81358 478.58647 487.4619 478.03648 486.75859 477.48814 486.05525 477.1748 484.99275 477.09648 483.57109 477.40315 484.0244 477.78816 484.3719 478.25148 484.61357 478.71647 484.85523 479.2273 484.97608 479.78398 484.97608 480.95564 484.97608 481.88148 484.62025 482.56147 483.90858 483.24147 483.19859 483.58146 482.2319 483.58146 481.00859 483.58146 479.81025 483.2273 478.84858 482.51896 478.12358 481.81065 477.40025 480.86814 477.03858 479.69148 477.03858 478.34147 477.03858 477.30979 477.55525 476.59648 478.58857 475.88313 479.62358 475.52647 481.12275 475.52647 483.08607 475.52647 484.9294 475.96397 486.3994 476.83897 487.49607 477.71397 488.59275 478.88813 489.14109 480.36149 489.14109 480.75813 489.14109 481.15815 489.1019 481.56147 489.02357 481.9648 488.94523 482.38563 488.82859 482.82398 488.67359Z"/> | |
| </g> | |
| <g clip-path="url(#clip_33)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7328 280.9952 624.8683 281.6224 625.86129 278.5398 627.75967 283.21949 629.10006 283.95985 627.3644 279.70494 631.90957 276.7651 630.5634 276.02159 626.8457 278.4813 626.30307 277.17448 627.2661 274.2003 626.1287 273.57206 623.7328 280.9952ZM633.47317 284.89097 641.1439 289.12797 641.69918 288.12269 634.02847 283.88569 633.47317 284.89097ZM634.82168 282.44956 642.49246 286.68656 643.054 285.6698 635.3833 281.4328 634.82168 282.44956ZM650.2159 293.1643C650.86257 293.3599 651.45626 293.3513 651.99697 293.1385 652.53829 292.92768 652.9675 292.53504 653.28488 291.9606 653.77139 291.07978 653.84506 290.23 653.5059 289.4113 653.16616 288.5938 652.4377 287.8766 651.32077 287.25965 650.9467 287.05305 650.5408 286.8771 650.10287 286.73188 649.6649 286.5866 649.19387 286.47135 648.6895 286.38603L648.0454 287.55216C648.48776 287.54158 648.93557 287.5965 649.3888 287.71693 649.8434 287.83805 650.28829 288.01884 650.7236 288.25929 651.4806 288.6774 651.9751 289.14549 652.2071 289.66346 652.4391 290.18147 652.3975 290.72578 652.08236 291.2964 651.79116 291.8236 651.3793 292.1334 650.84677 292.22578 650.31356 292.31944 649.71829 292.1847 649.0608 291.82157L648.01919 291.2462 647.4702 292.24 648.55978 292.8418C649.1534 293.16969 649.54226 293.5394 649.7264 293.95103 649.9105 294.3626 649.8792 294.7918 649.63247 295.2386 649.3793 295.69688 649.0223 295.95866 648.5614 296.02397 648.1011 296.09123 647.5677 295.9574 646.96139 295.62248 646.62948 295.43916 646.294 295.2064 645.9551 294.9242 645.6154 294.6433 645.26 294.30204 644.88876 293.9004L644.2944 294.9765C644.6834 295.358 645.0607 295.69136 645.4263 295.9766 645.7919 296.2618 646.1521 296.50245 646.50698 296.69847 647.4248 297.20545 648.2658 297.39759 649.02999 297.27488 649.7947 297.15419 650.3731 296.73893 650.76516 296.02919 651.0387 295.53388 651.1279 295.03755 651.03286 294.54017 650.9377 294.04283 650.6654 293.58418 650.2159 293.1643ZM656.171 292.15037 657.4348 292.84843 658.2746 291.32807 657.0108 290.63 656.171 292.15037ZM658.9962 302.34748C658.3745 302.0041 658.0759 301.4393 658.10037 300.6531 658.1253 299.8689 658.4773 298.86213 659.1563 297.6328 659.8325 296.4086 660.4962 295.5765 661.14749 295.13655 661.7999 294.69725 662.437 294.6493 663.05868 294.99269 663.6855 295.3389 663.986 295.90473 663.9603 296.69023 663.93588 297.4764 663.5856 298.48164 662.90939 299.70585 662.23037 300.93516 661.56497 301.7688 660.9132 302.2068 660.26199 302.6468 659.623 302.6937 658.9962 302.34748ZM658.46737 303.30488C659.4695 303.8584 660.4537 303.88475 661.42007 303.3839 662.3857 302.88438 663.2849 301.8808 664.1176 300.3732 664.94827 298.86946 665.31826 297.57524 665.2276 296.4906 665.1363 295.40724 664.5896 294.58879 663.5875 294.03529 662.5867 293.48246 661.60348 293.45585 660.6378 293.95539 659.67147 294.4562 658.77297 295.4585 657.9423 296.96226 657.1096 298.46986 656.7389 299.76533 656.83029 300.8487 656.92086 301.93336 657.46658 302.75209 658.46737 303.30488ZM674.7384 309.01359 673.51986 304.75444 677.7665 303.53147 677.454 302.4142 673.1895 303.64234 671.9603 299.3798 670.854 299.71333 672.07229 303.95484 667.8259 305.19544 668.1327 306.3095 672.39627 305.07844 673.6263 309.34394 674.7384 309.01359ZM683.3954 306.5307 685.36959 307.62117 681.6043 314.43788 679.69387 312.82035 679.0857 313.92137 680.9847 315.53257 682.19296 316.19996 686.56637 308.2822 688.5405 309.37263 689.1021 308.35588 683.95706 305.51396 683.3954 306.5307ZM689.63327 319.27006C689.01156 318.92668 688.7129 318.36189 688.7373 317.57569 688.7623 316.79148 689.1143 315.7847 689.79336 314.5554 690.46957 313.33119 691.13327 312.49909 691.7844 312.0591 692.43698 311.6198 693.07406 311.57188 693.6957 311.91526 694.32247 312.26148 694.623 312.8273 694.5973 313.6128 694.5729 314.399 694.2226 315.4042 693.5464 316.62843 692.8674 317.85774 692.20199 318.69139 691.5502 319.12937 690.899 319.56938 690.26 319.61628 689.63327 319.27006ZM689.1044 320.22746C690.10647 320.78099 691.0907 320.8073 692.05709 320.3065 693.0227 319.80696 693.9219 318.80339 694.75466 317.29579 695.58529 315.79203 695.95529 314.4978 695.8646 313.41319 695.7733 312.3298 695.2266 311.51136 694.22457 310.95787 693.2237 310.40504 692.2405 310.37843 691.27487 310.87797 690.3085 311.37879 689.41 312.38108 688.57937 313.88484 687.74667 315.39244 687.3759 316.6879 687.4672 317.77128 687.55789 318.85594 688.1036 319.67466 689.1044 320.22746ZM693.0281 324.8093 696.34957 326.64393 696.7434 325.93086 694.1967 324.52418 695.0429 322.99214C695.14218 323.10176 695.2473 323.20063 695.3584 323.2888 695.47036 323.37748 695.58798 323.45585 695.7113 323.52397 696.4092 323.90946 697.0675 324.0235 697.6862 323.86613 698.3058 323.70924 698.796 323.30418 699.1568 322.65098 699.5285 321.97813 699.6079 321.33918 699.39517 320.73417 699.1819 320.13008 698.69418 319.6175 697.93197 319.19648 697.6692 319.05137 697.3892 318.92588 697.09207 318.82 696.7957 318.71467 696.47769 318.62644 696.1379 318.5554L695.6677 319.40653C695.9944 319.4085 696.31027 319.45 696.6153 319.53108 696.9204 319.61213 697.22219 319.73509 697.5206 319.89994 698.004 320.16697 698.3164 320.5051 698.4577 320.91435 698.5999 321.3241 698.5506 321.747 698.3097 322.18309 698.06936 322.61827 697.7379 322.88475 697.31539 322.98255 696.8932 323.08174 696.4404 322.9978 695.957 322.7308 695.7309 322.60594 695.5191 322.45628 695.32156 322.28187 695.1249 322.1079 694.9389 321.90315 694.7635 321.66749L693.0281 324.8093ZM708.825 323.98307 709.1222 323.445 704.05947 320.64857C704.5268 319.91709 705.07437 319.46568 705.7021 319.29429 706.3299 319.12294 707.00888 319.2389 707.7391 319.6422 708.16159 319.8756 708.5428 320.15367 708.8827 320.47636 709.2226 320.79905 709.531 321.17265 709.808 321.5972L710.38339 320.55555C710.08 320.1697 709.7452 319.8182 709.37899 319.50096 709.01278 319.18373 708.61648 318.90736 708.19009 318.67185 707.12039 318.08097 706.1017 317.92396 705.13406 318.20085 704.1657 318.47898 703.38827 319.1491 702.8016 320.21119 702.1959 321.30775 702.01156 322.34129 702.2485 323.31184 702.48477 324.28367 703.1058 325.0474 704.1117 325.603 705.01296 326.1008 705.8863 326.2042 706.7318 325.91319 707.57656 325.6234 708.2743 324.98005 708.825 323.98307ZM707.5452 323.69853C707.20547 324.29554 706.77188 324.68247 706.2443 324.85926 705.7162 325.03733 705.1808 324.9765 704.63827 324.67686 704.02426 324.33769 703.62869 323.8926 703.45156 323.3416 703.2744 322.79063 703.3319 322.1843 703.6241 321.52268L707.5452 323.69853ZM713.3842 329.17286C713.2209 329.17594 713.0573 329.1539 712.89346 329.1067 712.7289 329.0608 712.55917 328.98954 712.3843 328.8929 711.76138 328.54884 711.395 328.08244 711.28536 327.49375 711.1757 326.90507 711.3303 326.23158 711.74917 325.4733L713.69949 321.94239 712.5927 321.33106 708.89089 328.0329 709.9976 328.64424 710.573 327.60258C710.5804 328.13813 710.7149 328.6064 710.9765 329.0075 711.2387 329.41056 711.6353 329.75874 712.1664 330.05207 712.2417 330.09367 712.3281 330.13475 712.42568 330.1753 712.5225 330.21714 712.6321 330.25849 712.75448 330.2994L713.3842 329.17286ZM720.1887 330.0025C719.74807 330.80036 719.24209 331.32725 718.6709 331.5832 718.1003 331.8411 717.5175 331.80577 716.9226 331.47718 716.3329 331.15144 715.99459 330.678 715.9078 330.05699 715.8203 329.4372 715.9969 328.7284 716.4376 327.93058 716.87619 327.13655 717.3814 326.61094 717.9533 326.35374 718.5252 326.09654 719.1061 326.1308 719.6958 326.45655 720.2907 326.78514 720.63088 327.25959 720.7164 327.87995 720.80319 328.50099 720.6273 329.2085 720.1887 330.0025ZM722.725 328.01228C723.3546 326.8723 723.56979 325.8841 723.3704 325.0476 723.17239 324.2118 722.55056 323.50517 721.50509 322.92768 721.1183 322.71403 720.7373 322.54109 720.3622 322.40888 719.98709 322.27665 719.6049 322.1813 719.21566 322.12294L718.62448 323.1933C719.044 323.1968 719.4343 323.24415 719.7955 323.33534 720.15737 323.42527 720.50167 323.56047 720.8284 323.74098 721.55099 324.14006 721.98757 324.62696 722.13827 325.20167 722.289 325.7764 722.1539 326.4448 721.7329 327.20689L721.43148 327.75263C721.42288 327.23139 721.295 326.7751 721.04806 326.38377 720.801 325.99244 720.4299 325.65998 719.9346 325.38639 719.1138 324.933 718.2791 324.88017 717.43069 325.22785 716.5815 325.5768 715.87136 326.2683 715.3002 327.3023 714.72769 328.33888 714.5201 329.3088 714.67758 330.21214 714.8343 331.1167 715.3231 331.7957 716.1439 332.24909 716.6392 332.52268 717.1182 332.65983 717.581 332.66053 718.04379 332.66123 718.4977 332.5271 718.9428 332.25819L718.38119 333.27494 719.4822 333.8831 722.725 328.01228ZM722.474 338.4495 723.4908 339.0111 725.9425 327.2205 724.9257 326.65888 722.474 338.4495ZM730.84426 339.82414 731.41329 338.79399C731.0066 338.79426 730.6233 338.7508 730.26327 338.66358 729.90328 338.57633 729.5637 338.44459 729.24459 338.2683 728.5297 337.87345 728.09957 337.34016 727.95419 336.6684 727.8093 335.99864 727.9629 335.2546 728.41488 334.43635 728.8668 333.61808 729.4152 333.09129 730.05996 332.856 730.7053 332.62269 731.3854 332.70347 732.1003 333.09834 732.4194 333.2746 732.71176 333.49189 732.97726 333.75016 733.24276 334.00843 733.48367 334.30976 733.69998 334.65415L734.26266 333.63548C734.03396 333.32255 733.77468 333.0394 733.4848 332.78599 733.1969 332.532 732.86727 332.30244 732.4958 332.09727 731.486 331.53953 730.5085 331.41358 729.5632 331.71943 728.61917 332.026 727.8496 332.718 727.25448 333.79539 726.6509 334.8881 726.4764 335.91294 726.73086 336.8698 726.9859 337.8287 727.63619 338.5969 728.68167 339.17439 729.0199 339.36125 729.36996 339.50877 729.7317 339.61695 730.0927 339.7264 730.46359 339.79548 730.84426 339.82414ZM738.5455 342.7335C738.5476 343.38108 738.6753 343.9281 738.9285 344.3745 739.18179 344.82093 739.5675 345.1873 740.08578 345.47355 740.78408 345.85926 741.45779 345.91233 742.10696 345.63285 742.75546 345.3546 743.3286 344.7649 743.8264 343.86366L746.0612 339.81767 744.95449 339.20634 742.73977 343.21595C742.3851 343.85804 742.0078 344.2711 741.608 344.45509 741.2087 344.64103 740.77609 344.60536 740.3102 344.34797 739.73959 344.03279 739.393 343.59397 739.2705 343.0315 739.1486 342.47105 739.2685 341.86335 739.6302 341.2085L741.7223 337.421 740.6155 336.80967 738.40078 340.81929C738.044 341.4652 737.6667 341.87989 737.2688 342.0633 736.8709 342.2467 736.4346 342.20729 735.9597 341.94499 735.3967 341.634 735.0544 341.19667 734.9326 340.63294 734.8121 340.0699 734.93167 339.46287 735.29129 338.81184L737.3833 335.02433 736.27658 334.413 732.5747 341.11485 733.68148 341.72618 734.25686 340.6845C734.2813 341.23448 734.4151 341.70405 734.65829 342.09327 734.9014 342.48249 735.2643 342.81037 735.7468 343.07688 736.23446 343.34626 736.7171 343.45124 737.1947 343.39186 737.67166 343.33375 738.1219 343.1143 738.5455 342.7335ZM745.2782 351.04557 746.295 351.60719 748.7467 339.81657 747.7299 339.25495 745.2782 351.04557ZM753.0642 352.17497 753.6396 351.1333C753.2413 351.12153 752.85238 351.0625 752.4729 350.9562 752.09408 350.8519 751.7246 350.70033 751.3646 350.50148 750.81826 350.19969 750.45468 349.88975 750.27389 349.57164 750.0931 349.25349 750.09536 348.92658 750.2808 348.59083 750.4218 348.3355 750.6302 348.18907 750.9059 348.1514 751.1816 348.11378 751.65127 348.19245 752.31497 348.38743L752.73867 348.5115C753.6123 348.77583 754.29806 348.84638 754.7959 348.7232 755.29379 348.60005 755.6936 348.26527 755.99539 347.7189 756.3395 347.09596 756.3656 346.46647 756.07388 345.83049 755.7813 345.19578 755.2043 344.64045 754.3426 344.1645 753.9839 343.96638 753.59048 343.7949 753.16238 343.65003 752.7342 343.5052 752.2666 343.3835 751.7596 343.28504L751.13137 344.42247C751.6556 344.43547 752.1442 344.49794 752.59719 344.60987 753.04946 344.72306 753.4696 344.88685 753.85769 345.1012 754.376 345.38749 754.7252 345.69618 754.9055 346.02735 755.0871 346.3592 755.0886 346.6866 754.9103 347.00959 754.74526 347.3083 754.5178 347.48173 754.228 347.52989 753.93948 347.57875 753.41287 347.4886 752.6481 347.25944L752.2154 347.1379C751.4548 346.90437 750.8404 346.8524 750.37228 346.982 749.90548 347.11235 749.5289 347.4366 749.2426 347.9549 748.8943 348.5855 748.84909 349.19529 749.1069 349.78419 749.36398 350.37437 749.90359 350.89649 750.72567 351.3506 751.1316 351.5748 751.5305 351.75599 751.92239 351.8941 752.31478 352.03425 752.6954 352.12785 753.0642 352.17497ZM755.79177 356.85279 756.80856 357.4144 759.26028 345.62379 758.24349 345.06217 755.79177 356.85279ZM758.0115 358.0789 759.2197 358.74629 761.3054 354.97026 763.2294 360.961 764.7861 361.8209 762.6518 355.20664 770.0371 353.06089 768.44589 352.18199 761.7782 354.11436 764.1548 349.81175 762.94656 349.14439 758.0115 358.0789Z" fill="#dc143c"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M623.7328 280.9952 624.8683 281.6224 625.86129 278.5398 627.75967 283.21949 629.10006 283.95985 627.3644 279.70494 631.90957 276.7651 630.5634 276.02159 626.8457 278.4813 626.30307 277.17448 627.2661 274.2003 626.1287 273.57206 623.7328 280.9952ZM633.47317 284.89097 641.1439 289.12797 641.69918 288.12269 634.02847 283.88569 633.47317 284.89097ZM634.82168 282.44956 642.49246 286.68656 643.054 285.6698 635.3833 281.4328 634.82168 282.44956ZM650.2159 293.1643C650.86257 293.3599 651.45626 293.3513 651.99697 293.1385 652.53829 292.92768 652.9675 292.53504 653.28488 291.9606 653.77139 291.07978 653.84506 290.23 653.5059 289.4113 653.16616 288.5938 652.4377 287.8766 651.32077 287.25965 650.9467 287.05305 650.5408 286.8771 650.10287 286.73188 649.6649 286.5866 649.19387 286.47135 648.6895 286.38603L648.0454 287.55216C648.48776 287.54158 648.93557 287.5965 649.3888 287.71693 649.8434 287.83805 650.28829 288.01884 650.7236 288.25929 651.4806 288.6774 651.9751 289.14549 652.2071 289.66346 652.4391 290.18147 652.3975 290.72578 652.08236 291.2964 651.79116 291.8236 651.3793 292.1334 650.84677 292.22578 650.31356 292.31944 649.71829 292.1847 649.0608 291.82157L648.01919 291.2462 647.4702 292.24 648.55978 292.8418C649.1534 293.16969 649.54226 293.5394 649.7264 293.95103 649.9105 294.3626 649.8792 294.7918 649.63247 295.2386 649.3793 295.69688 649.0223 295.95866 648.5614 296.02397 648.1011 296.09123 647.5677 295.9574 646.96139 295.62248 646.62948 295.43916 646.294 295.2064 645.9551 294.9242 645.6154 294.6433 645.26 294.30204 644.88876 293.9004L644.2944 294.9765C644.6834 295.358 645.0607 295.69136 645.4263 295.9766 645.7919 296.2618 646.1521 296.50245 646.50698 296.69847 647.4248 297.20545 648.2658 297.39759 649.02999 297.27488 649.7947 297.15419 650.3731 296.73893 650.76516 296.02919 651.0387 295.53388 651.1279 295.03755 651.03286 294.54017 650.9377 294.04283 650.6654 293.58418 650.2159 293.1643ZM656.171 292.15037 657.4348 292.84843 658.2746 291.32807 657.0108 290.63 656.171 292.15037ZM658.9962 302.34748C658.3745 302.0041 658.0759 301.4393 658.10037 300.6531 658.1253 299.8689 658.4773 298.86213 659.1563 297.6328 659.8325 296.4086 660.4962 295.5765 661.14749 295.13655 661.7999 294.69725 662.437 294.6493 663.05868 294.99269 663.6855 295.3389 663.986 295.90473 663.9603 296.69023 663.93588 297.4764 663.5856 298.48164 662.90939 299.70585 662.23037 300.93516 661.56497 301.7688 660.9132 302.2068 660.26199 302.6468 659.623 302.6937 658.9962 302.34748ZM658.46737 303.30488C659.4695 303.8584 660.4537 303.88475 661.42007 303.3839 662.3857 302.88438 663.2849 301.8808 664.1176 300.3732 664.94827 298.86946 665.31826 297.57524 665.2276 296.4906 665.1363 295.40724 664.5896 294.58879 663.5875 294.03529 662.5867 293.48246 661.60348 293.45585 660.6378 293.95539 659.67147 294.4562 658.77297 295.4585 657.9423 296.96226 657.1096 298.46986 656.7389 299.76533 656.83029 300.8487 656.92086 301.93336 657.46658 302.75209 658.46737 303.30488ZM674.7384 309.01359 673.51986 304.75444 677.7665 303.53147 677.454 302.4142 673.1895 303.64234 671.9603 299.3798 670.854 299.71333 672.07229 303.95484 667.8259 305.19544 668.1327 306.3095 672.39627 305.07844 673.6263 309.34394 674.7384 309.01359ZM683.3954 306.5307 685.36959 307.62117 681.6043 314.43788 679.69387 312.82035 679.0857 313.92137 680.9847 315.53257 682.19296 316.19996 686.56637 308.2822 688.5405 309.37263 689.1021 308.35588 683.95706 305.51396 683.3954 306.5307ZM689.63327 319.27006C689.01156 318.92668 688.7129 318.36189 688.7373 317.57569 688.7623 316.79148 689.1143 315.7847 689.79336 314.5554 690.46957 313.33119 691.13327 312.49909 691.7844 312.0591 692.43698 311.6198 693.07406 311.57188 693.6957 311.91526 694.32247 312.26148 694.623 312.8273 694.5973 313.6128 694.5729 314.399 694.2226 315.4042 693.5464 316.62843 692.8674 317.85774 692.20199 318.69139 691.5502 319.12937 690.899 319.56938 690.26 319.61628 689.63327 319.27006ZM689.1044 320.22746C690.10647 320.78099 691.0907 320.8073 692.05709 320.3065 693.0227 319.80696 693.9219 318.80339 694.75466 317.29579 695.58529 315.79203 695.95529 314.4978 695.8646 313.41319 695.7733 312.3298 695.2266 311.51136 694.22457 310.95787 693.2237 310.40504 692.2405 310.37843 691.27487 310.87797 690.3085 311.37879 689.41 312.38108 688.57937 313.88484 687.74667 315.39244 687.3759 316.6879 687.4672 317.77128 687.55789 318.85594 688.1036 319.67466 689.1044 320.22746ZM693.0281 324.8093 696.34957 326.64393 696.7434 325.93086 694.1967 324.52418 695.0429 322.99214C695.14218 323.10176 695.2473 323.20063 695.3584 323.2888 695.47036 323.37748 695.58798 323.45585 695.7113 323.52397 696.4092 323.90946 697.0675 324.0235 697.6862 323.86613 698.3058 323.70924 698.796 323.30418 699.1568 322.65098 699.5285 321.97813 699.6079 321.33918 699.39517 320.73417 699.1819 320.13008 698.69418 319.6175 697.93197 319.19648 697.6692 319.05137 697.3892 318.92588 697.09207 318.82 696.7957 318.71467 696.47769 318.62644 696.1379 318.5554L695.6677 319.40653C695.9944 319.4085 696.31027 319.45 696.6153 319.53108 696.9204 319.61213 697.22219 319.73509 697.5206 319.89994 698.004 320.16697 698.3164 320.5051 698.4577 320.91435 698.5999 321.3241 698.5506 321.747 698.3097 322.18309 698.06936 322.61827 697.7379 322.88475 697.31539 322.98255 696.8932 323.08174 696.4404 322.9978 695.957 322.7308 695.7309 322.60594 695.5191 322.45628 695.32156 322.28187 695.1249 322.1079 694.9389 321.90315 694.7635 321.66749L693.0281 324.8093ZM708.825 323.98307 709.1222 323.445 704.05947 320.64857C704.5268 319.91709 705.07437 319.46568 705.7021 319.29429 706.3299 319.12294 707.00888 319.2389 707.7391 319.6422 708.16159 319.8756 708.5428 320.15367 708.8827 320.47636 709.2226 320.79905 709.531 321.17265 709.808 321.5972L710.38339 320.55555C710.08 320.1697 709.7452 319.8182 709.37899 319.50096 709.01278 319.18373 708.61648 318.90736 708.19009 318.67185 707.12039 318.08097 706.1017 317.92396 705.13406 318.20085 704.1657 318.47898 703.38827 319.1491 702.8016 320.21119 702.1959 321.30775 702.01156 322.34129 702.2485 323.31184 702.48477 324.28367 703.1058 325.0474 704.1117 325.603 705.01296 326.1008 705.8863 326.2042 706.7318 325.91319 707.57656 325.6234 708.2743 324.98005 708.825 323.98307ZM707.5452 323.69853C707.20547 324.29554 706.77188 324.68247 706.2443 324.85926 705.7162 325.03733 705.1808 324.9765 704.63827 324.67686 704.02426 324.33769 703.62869 323.8926 703.45156 323.3416 703.2744 322.79063 703.3319 322.1843 703.6241 321.52268L707.5452 323.69853ZM713.3842 329.17286C713.2209 329.17594 713.0573 329.1539 712.89346 329.1067 712.7289 329.0608 712.55917 328.98954 712.3843 328.8929 711.76138 328.54884 711.395 328.08244 711.28536 327.49375 711.1757 326.90507 711.3303 326.23158 711.74917 325.4733L713.69949 321.94239 712.5927 321.33106 708.89089 328.0329 709.9976 328.64424 710.573 327.60258C710.5804 328.13813 710.7149 328.6064 710.9765 329.0075 711.2387 329.41056 711.6353 329.75874 712.1664 330.05207 712.2417 330.09367 712.3281 330.13475 712.42568 330.1753 712.5225 330.21714 712.6321 330.25849 712.75448 330.2994L713.3842 329.17286ZM720.1887 330.0025C719.74807 330.80036 719.24209 331.32725 718.6709 331.5832 718.1003 331.8411 717.5175 331.80577 716.9226 331.47718 716.3329 331.15144 715.99459 330.678 715.9078 330.05699 715.8203 329.4372 715.9969 328.7284 716.4376 327.93058 716.87619 327.13655 717.3814 326.61094 717.9533 326.35374 718.5252 326.09654 719.1061 326.1308 719.6958 326.45655 720.2907 326.78514 720.63088 327.25959 720.7164 327.87995 720.80319 328.50099 720.6273 329.2085 720.1887 330.0025ZM722.725 328.01228C723.3546 326.8723 723.56979 325.8841 723.3704 325.0476 723.17239 324.2118 722.55056 323.50517 721.50509 322.92768 721.1183 322.71403 720.7373 322.54109 720.3622 322.40888 719.98709 322.27665 719.6049 322.1813 719.21566 322.12294L718.62448 323.1933C719.044 323.1968 719.4343 323.24415 719.7955 323.33534 720.15737 323.42527 720.50167 323.56047 720.8284 323.74098 721.55099 324.14006 721.98757 324.62696 722.13827 325.20167 722.289 325.7764 722.1539 326.4448 721.7329 327.20689L721.43148 327.75263C721.42288 327.23139 721.295 326.7751 721.04806 326.38377 720.801 325.99244 720.4299 325.65998 719.9346 325.38639 719.1138 324.933 718.2791 324.88017 717.43069 325.22785 716.5815 325.5768 715.87136 326.2683 715.3002 327.3023 714.72769 328.33888 714.5201 329.3088 714.67758 330.21214 714.8343 331.1167 715.3231 331.7957 716.1439 332.24909 716.6392 332.52268 717.1182 332.65983 717.581 332.66053 718.04379 332.66123 718.4977 332.5271 718.9428 332.25819L718.38119 333.27494 719.4822 333.8831 722.725 328.01228ZM722.474 338.4495 723.4908 339.0111 725.9425 327.2205 724.9257 326.65888 722.474 338.4495ZM730.84426 339.82414 731.41329 338.79399C731.0066 338.79426 730.6233 338.7508 730.26327 338.66358 729.90328 338.57633 729.5637 338.44459 729.24459 338.2683 728.5297 337.87345 728.09957 337.34016 727.95419 336.6684 727.8093 335.99864 727.9629 335.2546 728.41488 334.43635 728.8668 333.61808 729.4152 333.09129 730.05996 332.856 730.7053 332.62269 731.3854 332.70347 732.1003 333.09834 732.4194 333.2746 732.71176 333.49189 732.97726 333.75016 733.24276 334.00843 733.48367 334.30976 733.69998 334.65415L734.26266 333.63548C734.03396 333.32255 733.77468 333.0394 733.4848 332.78599 733.1969 332.532 732.86727 332.30244 732.4958 332.09727 731.486 331.53953 730.5085 331.41358 729.5632 331.71943 728.61917 332.026 727.8496 332.718 727.25448 333.79539 726.6509 334.8881 726.4764 335.91294 726.73086 336.8698 726.9859 337.8287 727.63619 338.5969 728.68167 339.17439 729.0199 339.36125 729.36996 339.50877 729.7317 339.61695 730.0927 339.7264 730.46359 339.79548 730.84426 339.82414ZM738.5455 342.7335C738.5476 343.38108 738.6753 343.9281 738.9285 344.3745 739.18179 344.82093 739.5675 345.1873 740.08578 345.47355 740.78408 345.85926 741.45779 345.91233 742.10696 345.63285 742.75546 345.3546 743.3286 344.7649 743.8264 343.86366L746.0612 339.81767 744.95449 339.20634 742.73977 343.21595C742.3851 343.85804 742.0078 344.2711 741.608 344.45509 741.2087 344.64103 740.77609 344.60536 740.3102 344.34797 739.73959 344.03279 739.393 343.59397 739.2705 343.0315 739.1486 342.47105 739.2685 341.86335 739.6302 341.2085L741.7223 337.421 740.6155 336.80967 738.40078 340.81929C738.044 341.4652 737.6667 341.87989 737.2688 342.0633 736.8709 342.2467 736.4346 342.20729 735.9597 341.94499 735.3967 341.634 735.0544 341.19667 734.9326 340.63294 734.8121 340.0699 734.93167 339.46287 735.29129 338.81184L737.3833 335.02433 736.27658 334.413 732.5747 341.11485 733.68148 341.72618 734.25686 340.6845C734.2813 341.23448 734.4151 341.70405 734.65829 342.09327 734.9014 342.48249 735.2643 342.81037 735.7468 343.07688 736.23446 343.34626 736.7171 343.45124 737.1947 343.39186 737.67166 343.33375 738.1219 343.1143 738.5455 342.7335ZM745.2782 351.04557 746.295 351.60719 748.7467 339.81657 747.7299 339.25495 745.2782 351.04557ZM753.0642 352.17497 753.6396 351.1333C753.2413 351.12153 752.85238 351.0625 752.4729 350.9562 752.09408 350.8519 751.7246 350.70033 751.3646 350.50148 750.81826 350.19969 750.45468 349.88975 750.27389 349.57164 750.0931 349.25349 750.09536 348.92658 750.2808 348.59083 750.4218 348.3355 750.6302 348.18907 750.9059 348.1514 751.1816 348.11378 751.65127 348.19245 752.31497 348.38743L752.73867 348.5115C753.6123 348.77583 754.29806 348.84638 754.7959 348.7232 755.29379 348.60005 755.6936 348.26527 755.99539 347.7189 756.3395 347.09596 756.3656 346.46647 756.07388 345.83049 755.7813 345.19578 755.2043 344.64045 754.3426 344.1645 753.9839 343.96638 753.59048 343.7949 753.16238 343.65003 752.7342 343.5052 752.2666 343.3835 751.7596 343.28504L751.13137 344.42247C751.6556 344.43547 752.1442 344.49794 752.59719 344.60987 753.04946 344.72306 753.4696 344.88685 753.85769 345.1012 754.376 345.38749 754.7252 345.69618 754.9055 346.02735 755.0871 346.3592 755.0886 346.6866 754.9103 347.00959 754.74526 347.3083 754.5178 347.48173 754.228 347.52989 753.93948 347.57875 753.41287 347.4886 752.6481 347.25944L752.2154 347.1379C751.4548 346.90437 750.8404 346.8524 750.37228 346.982 749.90548 347.11235 749.5289 347.4366 749.2426 347.9549 748.8943 348.5855 748.84909 349.19529 749.1069 349.78419 749.36398 350.37437 749.90359 350.89649 750.72567 351.3506 751.1316 351.5748 751.5305 351.75599 751.92239 351.8941 752.31478 352.03425 752.6954 352.12785 753.0642 352.17497ZM755.79177 356.85279 756.80856 357.4144 759.26028 345.62379 758.24349 345.06217 755.79177 356.85279ZM758.0115 358.0789 759.2197 358.74629 761.3054 354.97026 763.2294 360.961 764.7861 361.8209 762.6518 355.20664 770.0371 353.06089 768.44589 352.18199 761.7782 354.11436 764.1548 349.81175 762.94656 349.14439 758.0115 358.0789Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7328 280.9952 624.8683 281.6224 625.86129 278.5398 627.75967 283.21949 629.10006 283.95985 627.3644 279.70494 631.90957 276.7651 630.5634 276.02159 626.8457 278.4813 626.30307 277.17448 627.2661 274.2003 626.1287 273.57206 623.7328 280.9952ZM633.47317 284.89097 641.1439 289.12797 641.69918 288.12269 634.02847 283.88569 633.47317 284.89097ZM634.82168 282.44956 642.49246 286.68656 643.054 285.6698 635.3833 281.4328 634.82168 282.44956ZM650.2159 293.1643C650.86257 293.3599 651.45626 293.3513 651.99697 293.1385 652.53829 292.92768 652.9675 292.53504 653.28488 291.9606 653.77139 291.07978 653.84506 290.23 653.5059 289.4113 653.16616 288.5938 652.4377 287.8766 651.32077 287.25965 650.9467 287.05305 650.5408 286.8771 650.10287 286.73188 649.6649 286.5866 649.19387 286.47135 648.6895 286.38603L648.0454 287.55216C648.48776 287.54158 648.93557 287.5965 649.3888 287.71693 649.8434 287.83805 650.28829 288.01884 650.7236 288.25929 651.4806 288.6774 651.9751 289.14549 652.2071 289.66346 652.4391 290.18147 652.3975 290.72578 652.08236 291.2964 651.79116 291.8236 651.3793 292.1334 650.84677 292.22578 650.31356 292.31944 649.71829 292.1847 649.0608 291.82157L648.01919 291.2462 647.4702 292.24 648.55978 292.8418C649.1534 293.16969 649.54226 293.5394 649.7264 293.95103 649.9105 294.3626 649.8792 294.7918 649.63247 295.2386 649.3793 295.69688 649.0223 295.95866 648.5614 296.02397 648.1011 296.09123 647.5677 295.9574 646.96139 295.62248 646.62948 295.43916 646.294 295.2064 645.9551 294.9242 645.6154 294.6433 645.26 294.30204 644.88876 293.9004L644.2944 294.9765C644.6834 295.358 645.0607 295.69136 645.4263 295.9766 645.7919 296.2618 646.1521 296.50245 646.50698 296.69847 647.4248 297.20545 648.2658 297.39759 649.02999 297.27488 649.7947 297.15419 650.3731 296.73893 650.76516 296.02919 651.0387 295.53388 651.1279 295.03755 651.03286 294.54017 650.9377 294.04283 650.6654 293.58418 650.2159 293.1643ZM656.171 292.15037 657.4348 292.84843 658.2746 291.32807 657.0108 290.63 656.171 292.15037ZM658.9962 302.34748C658.3745 302.0041 658.0759 301.4393 658.10037 300.6531 658.1253 299.8689 658.4773 298.86213 659.1563 297.6328 659.8325 296.4086 660.4962 295.5765 661.14749 295.13655 661.7999 294.69725 662.437 294.6493 663.05868 294.99269 663.6855 295.3389 663.986 295.90473 663.9603 296.69023 663.93588 297.4764 663.5856 298.48164 662.90939 299.70585 662.23037 300.93516 661.56497 301.7688 660.9132 302.2068 660.26199 302.6468 659.623 302.6937 658.9962 302.34748ZM658.46737 303.30488C659.4695 303.8584 660.4537 303.88475 661.42007 303.3839 662.3857 302.88438 663.2849 301.8808 664.1176 300.3732 664.94827 298.86946 665.31826 297.57524 665.2276 296.4906 665.1363 295.40724 664.5896 294.58879 663.5875 294.03529 662.5867 293.48246 661.60348 293.45585 660.6378 293.95539 659.67147 294.4562 658.77297 295.4585 657.9423 296.96226 657.1096 298.46986 656.7389 299.76533 656.83029 300.8487 656.92086 301.93336 657.46658 302.75209 658.46737 303.30488ZM674.7384 309.01359 673.51986 304.75444 677.7665 303.53147 677.454 302.4142 673.1895 303.64234 671.9603 299.3798 670.854 299.71333 672.07229 303.95484 667.8259 305.19544 668.1327 306.3095 672.39627 305.07844 673.6263 309.34394 674.7384 309.01359ZM683.3954 306.5307 685.36959 307.62117 681.6043 314.43788 679.69387 312.82035 679.0857 313.92137 680.9847 315.53257 682.19296 316.19996 686.56637 308.2822 688.5405 309.37263 689.1021 308.35588 683.95706 305.51396 683.3954 306.5307ZM689.63327 319.27006C689.01156 318.92668 688.7129 318.36189 688.7373 317.57569 688.7623 316.79148 689.1143 315.7847 689.79336 314.5554 690.46957 313.33119 691.13327 312.49909 691.7844 312.0591 692.43698 311.6198 693.07406 311.57188 693.6957 311.91526 694.32247 312.26148 694.623 312.8273 694.5973 313.6128 694.5729 314.399 694.2226 315.4042 693.5464 316.62843 692.8674 317.85774 692.20199 318.69139 691.5502 319.12937 690.899 319.56938 690.26 319.61628 689.63327 319.27006ZM689.1044 320.22746C690.10647 320.78099 691.0907 320.8073 692.05709 320.3065 693.0227 319.80696 693.9219 318.80339 694.75466 317.29579 695.58529 315.79203 695.95529 314.4978 695.8646 313.41319 695.7733 312.3298 695.2266 311.51136 694.22457 310.95787 693.2237 310.40504 692.2405 310.37843 691.27487 310.87797 690.3085 311.37879 689.41 312.38108 688.57937 313.88484 687.74667 315.39244 687.3759 316.6879 687.4672 317.77128 687.55789 318.85594 688.1036 319.67466 689.1044 320.22746ZM693.0281 324.8093 696.34957 326.64393 696.7434 325.93086 694.1967 324.52418 695.0429 322.99214C695.14218 323.10176 695.2473 323.20063 695.3584 323.2888 695.47036 323.37748 695.58798 323.45585 695.7113 323.52397 696.4092 323.90946 697.0675 324.0235 697.6862 323.86613 698.3058 323.70924 698.796 323.30418 699.1568 322.65098 699.5285 321.97813 699.6079 321.33918 699.39517 320.73417 699.1819 320.13008 698.69418 319.6175 697.93197 319.19648 697.6692 319.05137 697.3892 318.92588 697.09207 318.82 696.7957 318.71467 696.47769 318.62644 696.1379 318.5554L695.6677 319.40653C695.9944 319.4085 696.31027 319.45 696.6153 319.53108 696.9204 319.61213 697.22219 319.73509 697.5206 319.89994 698.004 320.16697 698.3164 320.5051 698.4577 320.91435 698.5999 321.3241 698.5506 321.747 698.3097 322.18309 698.06936 322.61827 697.7379 322.88475 697.31539 322.98255 696.8932 323.08174 696.4404 322.9978 695.957 322.7308 695.7309 322.60594 695.5191 322.45628 695.32156 322.28187 695.1249 322.1079 694.9389 321.90315 694.7635 321.66749L693.0281 324.8093ZM708.825 323.98307 709.1222 323.445 704.05947 320.64857C704.5268 319.91709 705.07437 319.46568 705.7021 319.29429 706.3299 319.12294 707.00888 319.2389 707.7391 319.6422 708.16159 319.8756 708.5428 320.15367 708.8827 320.47636 709.2226 320.79905 709.531 321.17265 709.808 321.5972L710.38339 320.55555C710.08 320.1697 709.7452 319.8182 709.37899 319.50096 709.01278 319.18373 708.61648 318.90736 708.19009 318.67185 707.12039 318.08097 706.1017 317.92396 705.13406 318.20085 704.1657 318.47898 703.38827 319.1491 702.8016 320.21119 702.1959 321.30775 702.01156 322.34129 702.2485 323.31184 702.48477 324.28367 703.1058 325.0474 704.1117 325.603 705.01296 326.1008 705.8863 326.2042 706.7318 325.91319 707.57656 325.6234 708.2743 324.98005 708.825 323.98307ZM707.5452 323.69853C707.20547 324.29554 706.77188 324.68247 706.2443 324.85926 705.7162 325.03733 705.1808 324.9765 704.63827 324.67686 704.02426 324.33769 703.62869 323.8926 703.45156 323.3416 703.2744 322.79063 703.3319 322.1843 703.6241 321.52268L707.5452 323.69853ZM713.3842 329.17286C713.2209 329.17594 713.0573 329.1539 712.89346 329.1067 712.7289 329.0608 712.55917 328.98954 712.3843 328.8929 711.76138 328.54884 711.395 328.08244 711.28536 327.49375 711.1757 326.90507 711.3303 326.23158 711.74917 325.4733L713.69949 321.94239 712.5927 321.33106 708.89089 328.0329 709.9976 328.64424 710.573 327.60258C710.5804 328.13813 710.7149 328.6064 710.9765 329.0075 711.2387 329.41056 711.6353 329.75874 712.1664 330.05207 712.2417 330.09367 712.3281 330.13475 712.42568 330.1753 712.5225 330.21714 712.6321 330.25849 712.75448 330.2994L713.3842 329.17286ZM720.1887 330.0025C719.74807 330.80036 719.24209 331.32725 718.6709 331.5832 718.1003 331.8411 717.5175 331.80577 716.9226 331.47718 716.3329 331.15144 715.99459 330.678 715.9078 330.05699 715.8203 329.4372 715.9969 328.7284 716.4376 327.93058 716.87619 327.13655 717.3814 326.61094 717.9533 326.35374 718.5252 326.09654 719.1061 326.1308 719.6958 326.45655 720.2907 326.78514 720.63088 327.25959 720.7164 327.87995 720.80319 328.50099 720.6273 329.2085 720.1887 330.0025ZM722.725 328.01228C723.3546 326.8723 723.56979 325.8841 723.3704 325.0476 723.17239 324.2118 722.55056 323.50517 721.50509 322.92768 721.1183 322.71403 720.7373 322.54109 720.3622 322.40888 719.98709 322.27665 719.6049 322.1813 719.21566 322.12294L718.62448 323.1933C719.044 323.1968 719.4343 323.24415 719.7955 323.33534 720.15737 323.42527 720.50167 323.56047 720.8284 323.74098 721.55099 324.14006 721.98757 324.62696 722.13827 325.20167 722.289 325.7764 722.1539 326.4448 721.7329 327.20689L721.43148 327.75263C721.42288 327.23139 721.295 326.7751 721.04806 326.38377 720.801 325.99244 720.4299 325.65998 719.9346 325.38639 719.1138 324.933 718.2791 324.88017 717.43069 325.22785 716.5815 325.5768 715.87136 326.2683 715.3002 327.3023 714.72769 328.33888 714.5201 329.3088 714.67758 330.21214 714.8343 331.1167 715.3231 331.7957 716.1439 332.24909 716.6392 332.52268 717.1182 332.65983 717.581 332.66053 718.04379 332.66123 718.4977 332.5271 718.9428 332.25819L718.38119 333.27494 719.4822 333.8831 722.725 328.01228ZM722.474 338.4495 723.4908 339.0111 725.9425 327.2205 724.9257 326.65888 722.474 338.4495ZM730.84426 339.82414 731.41329 338.79399C731.0066 338.79426 730.6233 338.7508 730.26327 338.66358 729.90328 338.57633 729.5637 338.44459 729.24459 338.2683 728.5297 337.87345 728.09957 337.34016 727.95419 336.6684 727.8093 335.99864 727.9629 335.2546 728.41488 334.43635 728.8668 333.61808 729.4152 333.09129 730.05996 332.856 730.7053 332.62269 731.3854 332.70347 732.1003 333.09834 732.4194 333.2746 732.71176 333.49189 732.97726 333.75016 733.24276 334.00843 733.48367 334.30976 733.69998 334.65415L734.26266 333.63548C734.03396 333.32255 733.77468 333.0394 733.4848 332.78599 733.1969 332.532 732.86727 332.30244 732.4958 332.09727 731.486 331.53953 730.5085 331.41358 729.5632 331.71943 728.61917 332.026 727.8496 332.718 727.25448 333.79539 726.6509 334.8881 726.4764 335.91294 726.73086 336.8698 726.9859 337.8287 727.63619 338.5969 728.68167 339.17439 729.0199 339.36125 729.36996 339.50877 729.7317 339.61695 730.0927 339.7264 730.46359 339.79548 730.84426 339.82414ZM738.5455 342.7335C738.5476 343.38108 738.6753 343.9281 738.9285 344.3745 739.18179 344.82093 739.5675 345.1873 740.08578 345.47355 740.78408 345.85926 741.45779 345.91233 742.10696 345.63285 742.75546 345.3546 743.3286 344.7649 743.8264 343.86366L746.0612 339.81767 744.95449 339.20634 742.73977 343.21595C742.3851 343.85804 742.0078 344.2711 741.608 344.45509 741.2087 344.64103 740.77609 344.60536 740.3102 344.34797 739.73959 344.03279 739.393 343.59397 739.2705 343.0315 739.1486 342.47105 739.2685 341.86335 739.6302 341.2085L741.7223 337.421 740.6155 336.80967 738.40078 340.81929C738.044 341.4652 737.6667 341.87989 737.2688 342.0633 736.8709 342.2467 736.4346 342.20729 735.9597 341.94499 735.3967 341.634 735.0544 341.19667 734.9326 340.63294 734.8121 340.0699 734.93167 339.46287 735.29129 338.81184L737.3833 335.02433 736.27658 334.413 732.5747 341.11485 733.68148 341.72618 734.25686 340.6845C734.2813 341.23448 734.4151 341.70405 734.65829 342.09327 734.9014 342.48249 735.2643 342.81037 735.7468 343.07688 736.23446 343.34626 736.7171 343.45124 737.1947 343.39186 737.67166 343.33375 738.1219 343.1143 738.5455 342.7335ZM745.2782 351.04557 746.295 351.60719 748.7467 339.81657 747.7299 339.25495 745.2782 351.04557ZM753.0642 352.17497 753.6396 351.1333C753.2413 351.12153 752.85238 351.0625 752.4729 350.9562 752.09408 350.8519 751.7246 350.70033 751.3646 350.50148 750.81826 350.19969 750.45468 349.88975 750.27389 349.57164 750.0931 349.25349 750.09536 348.92658 750.2808 348.59083 750.4218 348.3355 750.6302 348.18907 750.9059 348.1514 751.1816 348.11378 751.65127 348.19245 752.31497 348.38743L752.73867 348.5115C753.6123 348.77583 754.29806 348.84638 754.7959 348.7232 755.29379 348.60005 755.6936 348.26527 755.99539 347.7189 756.3395 347.09596 756.3656 346.46647 756.07388 345.83049 755.7813 345.19578 755.2043 344.64045 754.3426 344.1645 753.9839 343.96638 753.59048 343.7949 753.16238 343.65003 752.7342 343.5052 752.2666 343.3835 751.7596 343.28504L751.13137 344.42247C751.6556 344.43547 752.1442 344.49794 752.59719 344.60987 753.04946 344.72306 753.4696 344.88685 753.85769 345.1012 754.376 345.38749 754.7252 345.69618 754.9055 346.02735 755.0871 346.3592 755.0886 346.6866 754.9103 347.00959 754.74526 347.3083 754.5178 347.48173 754.228 347.52989 753.93948 347.57875 753.41287 347.4886 752.6481 347.25944L752.2154 347.1379C751.4548 346.90437 750.8404 346.8524 750.37228 346.982 749.90548 347.11235 749.5289 347.4366 749.2426 347.9549 748.8943 348.5855 748.84909 349.19529 749.1069 349.78419 749.36398 350.37437 749.90359 350.89649 750.72567 351.3506 751.1316 351.5748 751.5305 351.75599 751.92239 351.8941 752.31478 352.03425 752.6954 352.12785 753.0642 352.17497ZM755.79177 356.85279 756.80856 357.4144 759.26028 345.62379 758.24349 345.06217 755.79177 356.85279ZM758.0115 358.0789 759.2197 358.74629 761.3054 354.97026 763.2294 360.961 764.7861 361.8209 762.6518 355.20664 770.0371 353.06089 768.44589 352.18199 761.7782 354.11436 764.1548 349.81175 762.94656 349.14439 758.0115 358.0789Z" fill="#dc143c"/> | |
| </g> | |
| <g clip-path="url(#clip_34)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7273 335.36 624.8628 335.98719 625.8558 332.90458 627.75418 337.58427 629.09457 338.32463 627.3588 334.0697 631.90408 331.1299 630.5579 330.38636 626.8402 332.84608 626.29757 331.53926 627.2606 328.56507 626.1232 327.93684 623.7273 335.36ZM633.46768 339.25575 641.1384 343.49275 641.69369 342.48747 634.02297 338.25047 633.46768 339.25575ZM634.81619 336.81437 642.48696 341.05134 643.0485 340.03459 635.3778 335.79759 634.81619 336.81437ZM650.2104 347.52909C650.85708 347.72468 651.45077 347.71607 651.99148 347.50328 652.5328 347.29246 652.96206 346.8998 653.27938 346.32539 653.76589 345.44456 653.83956 344.5948 653.5004 343.77607 653.1606 342.9586 652.4322 342.2414 651.31527 341.62443 650.9412 341.41783 650.5352 341.24189 650.09738 341.09666 649.6594 340.9514 649.18838 340.83613 648.684 340.7508L648.0399 341.91694C648.48226 341.90635 648.93008 341.96128 649.3833 342.0817 649.8379 342.20283 650.2828 342.3836 650.7181 342.62406 651.4751 343.04219 651.9696 343.51026 652.2016 344.02827 652.4336 344.54624 652.392 345.09056 652.07687 345.66117 651.78567 346.1884 651.3738 346.49818 650.84127 346.59056 650.30807 346.6842 649.7127 346.54948 649.0553 346.18635L648.0137 345.611 647.4647 346.60478 648.55429 347.20658C649.1478 347.53446 649.53677 347.90419 649.7209 348.3158 649.905 348.7274 649.8737 349.1566 649.62698 349.60337 649.3738 350.06166 649.0168 350.32344 648.5559 350.38874 648.0956 350.456 647.5622 350.32218 646.9559 349.98725 646.62399 349.80393 646.2885 349.57118 645.9496 349.289 645.6099 349.0081 645.2545 348.6668 644.88327 348.26518L644.2889 349.34129C644.6779 349.72279 645.0552 350.05616 645.4208 350.34138 645.7864 350.6266 646.1466 350.86723 646.50149 351.06324 647.4193 351.57023 648.2603 351.76237 649.0245 351.63969 649.7892 351.51896 650.3676 351.10374 650.75967 350.39396 651.0332 349.89866 651.12246 349.4023 651.0273 348.90498 650.9322 348.4076 650.65988 347.94898 650.2104 347.52909ZM656.1655 346.51515 657.4293 347.2132 658.2691 345.69285 657.0053 344.99479 656.1655 346.51515ZM658.9907 356.71226C658.369 356.36888 658.0704 355.80409 658.09487 355.01789 658.1198 354.23368 658.4718 353.2269 659.1508 351.9976 659.827 350.77339 660.4907 349.94129 661.14199 349.5013 661.79446 349.062 662.4315 349.01408 663.05319 349.35746 663.67996 349.70368 663.9805 350.26954 663.95486 351.05503 663.93038 351.84123 663.5801 352.8464 662.9039 354.07063 662.22488 355.29994 661.55947 356.13359 660.90768 356.5716 660.2565 357.01158 659.6175 357.05848 658.9907 356.71226ZM658.46188 357.66969C659.4639 358.22319 660.4482 358.2495 661.41458 357.7487 662.3802 357.24916 663.2794 356.24559 664.1121 354.738 664.94277 353.23423 665.31277 351.94004 665.2221 350.85539 665.1308 349.772 664.5841 348.95356 663.58206 348.40007 662.5812 347.84727 661.59799 347.82063 660.6323 348.32017 659.66598 348.82099 658.76748 349.82328 657.9368 351.32704 657.1041 352.83464 656.7334 354.13014 656.8247 355.2135 656.91537 356.29814 657.46109 357.11686 658.46188 357.66969ZM674.7329 363.37837 673.51437 359.1192 677.761 357.89625 677.4485 356.779 673.184 358.0071 671.95486 353.74458 670.8485 354.0781 672.0668 358.3196 667.82046 359.5602 668.1272 360.6743 672.39077 359.4432 673.6208 363.7087 674.7329 363.37837ZM683.3899 360.89549 685.3641 361.98594 681.5988 368.80268 679.68838 367.18513 679.0802 368.28617 680.9792 369.89735 682.1874 370.56474 686.56088 362.64698 688.53506 363.73744 689.0966 362.72065 683.95156 359.87873 683.3899 360.89549ZM689.6277 373.63484C689.00607 373.29145 688.7074 372.72666 688.7318 371.94047 688.75686 371.15626 689.1088 370.14949 689.78787 368.92018 690.46408 367.69596 691.12777 366.86387 691.77896 366.4239 692.43148 365.9846 693.06857 365.93666 693.6902 366.28004 694.31698 366.62626 694.6175 367.1921 694.5918 367.9776 694.5674 368.7638 694.2171 369.76899 693.5409 370.9932 692.8619 372.2225 692.1965 373.05616 691.5447 373.49418 690.8935 373.93415 690.2545 373.98106 689.6277 373.63484ZM689.0989 374.59226C690.10098 375.14576 691.0852 375.1721 692.0516 374.67127 693.0172 374.17173 693.9164 373.16816 694.74917 371.66059 695.5798 370.1568 695.94979 368.8626 695.85916 367.77796 695.7678 366.69459 695.2211 365.87614 694.219 365.32264 693.2182 364.76985 692.235 364.7432 691.26937 365.24275 690.303 365.74357 689.4045 366.74586 688.57388 368.2496 687.74118 369.7572 687.3704 371.0527 687.46176 372.13609 687.55239 373.2207 688.0981 374.03944 689.0989 374.59226ZM696.47006 377.43623C696.0903 377.22648 695.86099 376.9301 695.7821 376.54719 695.7036 376.16566 695.78927 375.74879 696.039 375.29664 696.28726 374.84718 696.5945 374.55274 696.96078 374.4133 697.32736 374.2753 697.70059 374.31117 698.0803 374.52095 698.4601 374.7307 698.6887 375.02726 698.76626 375.41059 698.8432 375.7948 698.75759 376.21168 698.5093 376.66114 698.2595 377.11329 697.9523 377.4077 697.5875 377.54447 697.2223 377.68208 696.8498 377.646 696.47006 377.43623ZM696.6843 381.0165 697.11007 380.2458C696.8421 380.2284 696.58547 380.18635 696.3401 380.11964 696.09426 380.05378 695.8649 379.96214 695.6523 379.84468 695.0938 379.53617 694.77127 379.11195 694.68466 378.572 694.59896 378.0325 694.7456 377.37007 695.12466 376.58464 695.1548 376.91853 695.2583 377.21885 695.4352 377.48564 695.6129 377.7529 695.851 377.96897 696.1495 378.13383 696.77767 378.4808 697.3794 378.5642 697.9547 378.384 698.5296 378.20475 698.99819 377.78715 699.3604 377.13127 699.71536 376.48878 699.81027 375.8683 699.64517 375.2698 699.4796 374.67225 699.08139 374.19923 698.4505 373.85075 697.7267 373.45097 697.02059 373.42243 696.3321 373.7652 695.6431 374.10887 695.00796 374.807 694.4265 375.85966 693.8806 376.84797 693.6799 377.76567 693.8242 378.61277 693.96859 379.45988 694.4357 380.10157 695.22567 380.5379 695.4383 380.65538 695.66439 380.7528 695.9038 380.83027 696.14328 380.9077 696.40347 380.9698 696.6843 381.0165ZM708.81948 378.34788 709.1167 377.80979 704.0539 375.01335C704.52127 374.28187 705.06887 373.83045 705.6966 373.6591 706.3244 373.4877 707.00338 373.60368 707.7336 374.007 708.15609 374.2404 708.5373 374.51844 708.8772 374.84114 709.2171 375.16383 709.5255 375.5374 709.8025 375.96199L710.37789 374.92033C710.07449 374.53453 709.7397 374.18299 709.3735 373.86573 709.00729 373.5485 708.61099 373.27214 708.1846 373.03663 707.11489 372.44575 706.0962 372.28874 705.12857 372.5656 704.1602 372.84379 703.38278 373.5139 702.7961 374.57597 702.1904 375.67253 702.00607 376.70606 702.243 377.6766 702.4792 378.64845 703.1003 379.41218 704.1062 379.96778 705.00747 380.4656 705.8808 380.56898 706.72628 380.27796 707.57107 379.9882 708.2688 379.34486 708.81948 378.34788ZM707.53976 378.0633C707.19998 378.66035 706.76638 379.04725 706.23886 379.22404 705.7107 379.4021 705.1753 379.34129 704.63278 379.04164 704.01876 378.70246 703.62319 378.2574 703.44607 377.7064 703.2689 377.1554 703.3264 376.54908 703.6186 375.88746L707.53976 378.0633ZM713.3787 383.53764C713.2154 383.5407 713.0518 383.51869 712.88796 383.47148 712.7234 383.42558 712.55368 383.3543 712.3788 383.25773 711.75588 382.9136 711.3895 382.44725 711.27987 381.85853 711.1702 381.26985 711.32479 380.59635 711.74368 379.83808L713.694 376.30717 712.5872 375.69584 708.8854 382.39768 709.9921 383.009 710.5675 381.96736C710.5749 382.5029 710.7094 382.97123 710.971 383.37229 711.2332 383.77534 711.6298 384.1235 712.1609 384.41685 712.2362 384.45845 712.32266 384.4995 712.42019 384.54008 712.517 384.5819 712.6266 384.6233 712.74899 384.6642L713.3787 383.53764ZM720.1832 384.3673C719.74258 385.16514 719.2366 385.69203 718.6654 385.94798 718.0947 386.20588 717.512 386.17057 716.9171 385.84199 716.3274 385.5162 715.9891 385.04283 715.9023 384.42176 715.8148 383.80198 715.9914 383.09318 716.43209 382.29536 716.87069 381.50135 717.3759 380.9757 717.9478 380.7185 718.5197 380.4613 719.1006 380.49559 719.6903 380.82133 720.2852 381.1499 720.62539 381.62437 720.7109 382.24473 720.79769 382.86576 720.62179 383.5733 720.1832 384.3673ZM722.7195 382.37705C723.3491 381.2371 723.5643 380.24888 723.3649 379.41239 723.1669 378.57658 722.54507 377.86994 721.4996 377.29246 721.1128 377.0788 720.7318 376.90589 720.3567 376.77366 719.98159 376.64143 719.5994 376.5461 719.21017 376.4877L718.6189 377.55809C719.0385 377.56159 719.42886 377.60896 719.79 377.70014 720.1518 377.79005 720.49618 377.92524 720.82296 378.10575 721.5455 378.50486 721.98208 378.99174 722.13278 379.56648 722.28347 380.14118 722.1484 380.80958 721.7274 381.5717L721.42599 382.1174C721.4173 381.59617 721.2895 381.13987 721.04257 380.74855 720.79556 380.3572 720.4244 380.02476 719.9291 379.75117 719.1083 379.2978 718.2736 379.24494 717.4252 379.59266 716.576 379.94163 715.86587 380.6331 715.2947 381.66709 714.72219 382.70365 714.5146 383.67359 714.67208 384.5769 714.8288 385.48149 715.31759 386.1605 716.1384 386.61387 716.6337 386.88746 717.11276 387.0246 717.5755 387.0253 718.03829 387.026 718.4922 386.8919 718.9373 386.62297L718.3757 387.6397 719.4767 388.24787 722.7195 382.37705ZM722.4685 392.81428 723.4852 393.3759 725.937 381.58528 724.9202 381.02366 722.4685 392.81428ZM730.83877 394.1889 731.4078 393.15876C731.0011 393.15904 730.6178 393.11558 730.25778 393.02836 729.89779 392.94114 729.5582 392.80937 729.2391 392.6331 728.52426 392.23823 728.09408 391.70494 727.94869 391.03318 727.80386 390.3634 727.9574 389.6194 728.40939 388.80113 728.8613 387.98286 729.4097 387.45606 730.05447 387.22077 730.6998 386.98747 731.3799 387.06825 732.0948 387.4631 732.4139 387.63938 732.70626 387.85667 732.97177 388.11494 733.23727 388.3732 733.47817 388.67454 733.69448 389.01893L734.2571 388.00025C734.02847 387.68736 733.76919 387.40419 733.4793 387.1508 733.1914 386.8968 732.86178 386.6672 732.4903 386.46205 731.4805 385.9043 730.503 385.77836 729.5577 386.08424 728.61367 386.39079 727.8441 387.08277 727.24899 388.16017 726.6454 389.2529 726.4709 390.2777 726.72537 391.23463 726.98037 392.19349 727.6306 392.96168 728.67617 393.53916 729.0144 393.726 729.36447 393.87355 729.7262 393.98173 730.0872 394.0912 730.45809 394.16026 730.83877 394.1889ZM738.54 397.09828C738.5421 397.74589 738.6698 398.29289 738.92306 398.7393 739.1763 399.1857 739.562 399.55207 740.08029 399.83833 740.77859 400.22404 741.4523 400.27714 742.10147 399.99763 742.74996 399.7194 743.3231 399.12968 743.8209 398.22843L746.0557 394.18244 744.949 393.5711 742.73428 397.58073C742.3796 398.2228 742.0023 398.63587 741.6025 398.81986 741.2032 399.00584 740.77059 398.97013 740.3046 398.71278 739.734 398.39759 739.3875 397.95875 739.265 397.3963 739.14309 396.83583 739.263 396.22816 739.6247 395.57328L741.7168 391.78578 740.61 391.17445 738.39529 395.18406C738.03848 395.83 737.66116 396.24467 737.2633 396.42808 736.8654 396.61149 736.4291 396.57206 735.9542 396.30976 735.39126 395.9988 735.0489 395.56147 734.9271 394.9977 734.8066 394.4347 734.92617 393.82765 735.28579 393.1766L737.3778 389.3891 736.27108 388.77778 732.5692 395.4796 733.67599 396.09095 734.25137 395.0493C734.2758 395.59925 734.4096 396.06886 734.6528 396.45805 734.89596 396.84727 735.2588 397.17515 735.74136 397.44169 736.22897 397.71104 736.7116 397.816 737.1892 397.75663 737.66616 397.69853 738.1164 397.47908 738.54 397.09828ZM745.2727 405.41035 746.2895 405.972 748.7412 394.18138 747.7244 393.61976 745.2727 405.41035ZM753.0587 406.53977 753.6341 405.49809C753.2357 405.48634 752.84689 405.42729 752.4674 405.32099 752.08859 405.21669 751.7191 405.0651 751.35916 404.86625 750.81277 404.56446 750.44918 404.25453 750.2684 403.9364 750.0875 403.6183 750.08987 403.29136 750.2753 402.95564 750.4163 402.70033 750.6247 402.55384 750.9004 402.51618 751.1761 402.47856 751.64578 402.55723 752.30947 402.7522L752.73318 402.8763C753.6068 403.1406 754.29257 403.21116 754.7904 403.08799 755.28829 402.9648 755.6881 402.63005 755.98989 402.08369 756.334 401.46073 756.3601 400.83128 756.06838 400.19529 755.7758 399.56056 755.1987 399.00526 754.3371 398.5293 753.9784 398.33116 753.58499 398.15968 753.15689 398.0148 752.7287 397.86997 752.2611 397.7483 751.7541 397.6498L751.1258 398.78724C751.6501 398.80024 752.13876 398.86274 752.5917 398.97465 753.04397 399.08787 753.4641 399.25163 753.8522 399.46598 754.3705 399.75227 754.7197 400.06098 754.9 400.39213 755.08157 400.72398 755.0831 401.0514 754.9048 401.37437 754.73977 401.67308 754.5123 401.8465 754.22256 401.89466 753.93399 401.9435 753.4073 401.8534 752.6426 401.62425L752.2099 401.5027C751.4493 401.26914 750.8349 401.21717 750.36679 401.34678 749.89999 401.4771 749.5234 401.80143 749.2371 402.31968 748.8888 402.9503 748.84359 403.56007 749.1014 404.14897 749.35848 404.73915 749.8981 405.26127 750.72018 405.71537 751.1261 405.93959 751.525 406.12077 751.9169 406.2589 752.30929 406.39903 752.6899 406.49266 753.0587 406.53977ZM755.78628 411.21757 756.803 411.7792 759.25479 399.9886 758.238 399.42698 755.78628 411.21757ZM758.006 412.44367 759.21426 413.11106 761.2999 409.33506 763.2239 415.3258 764.7806 416.18568 762.6463 409.5714 770.0316 407.42567 768.44039 406.54676 761.7727 408.47914 764.1493 404.17655 762.94107 403.50917 758.006 412.44367Z" fill="#9acd32"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M623.7273 335.36 624.8628 335.98719 625.8558 332.90458 627.75418 337.58427 629.09457 338.32463 627.3588 334.0697 631.90408 331.1299 630.5579 330.38636 626.8402 332.84608 626.29757 331.53926 627.2606 328.56507 626.1232 327.93684 623.7273 335.36ZM633.46768 339.25575 641.1384 343.49275 641.69369 342.48747 634.02297 338.25047 633.46768 339.25575ZM634.81619 336.81437 642.48696 341.05134 643.0485 340.03459 635.3778 335.79759 634.81619 336.81437ZM650.2104 347.52909C650.85708 347.72468 651.45077 347.71607 651.99148 347.50328 652.5328 347.29246 652.96206 346.8998 653.27938 346.32539 653.76589 345.44456 653.83956 344.5948 653.5004 343.77607 653.1606 342.9586 652.4322 342.2414 651.31527 341.62443 650.9412 341.41783 650.5352 341.24189 650.09738 341.09666 649.6594 340.9514 649.18838 340.83613 648.684 340.7508L648.0399 341.91694C648.48226 341.90635 648.93008 341.96128 649.3833 342.0817 649.8379 342.20283 650.2828 342.3836 650.7181 342.62406 651.4751 343.04219 651.9696 343.51026 652.2016 344.02827 652.4336 344.54624 652.392 345.09056 652.07687 345.66117 651.78567 346.1884 651.3738 346.49818 650.84127 346.59056 650.30807 346.6842 649.7127 346.54948 649.0553 346.18635L648.0137 345.611 647.4647 346.60478 648.55429 347.20658C649.1478 347.53446 649.53677 347.90419 649.7209 348.3158 649.905 348.7274 649.8737 349.1566 649.62698 349.60337 649.3738 350.06166 649.0168 350.32344 648.5559 350.38874 648.0956 350.456 647.5622 350.32218 646.9559 349.98725 646.62399 349.80393 646.2885 349.57118 645.9496 349.289 645.6099 349.0081 645.2545 348.6668 644.88327 348.26518L644.2889 349.34129C644.6779 349.72279 645.0552 350.05616 645.4208 350.34138 645.7864 350.6266 646.1466 350.86723 646.50149 351.06324 647.4193 351.57023 648.2603 351.76237 649.0245 351.63969 649.7892 351.51896 650.3676 351.10374 650.75967 350.39396 651.0332 349.89866 651.12246 349.4023 651.0273 348.90498 650.9322 348.4076 650.65988 347.94898 650.2104 347.52909ZM656.1655 346.51515 657.4293 347.2132 658.2691 345.69285 657.0053 344.99479 656.1655 346.51515ZM658.9907 356.71226C658.369 356.36888 658.0704 355.80409 658.09487 355.01789 658.1198 354.23368 658.4718 353.2269 659.1508 351.9976 659.827 350.77339 660.4907 349.94129 661.14199 349.5013 661.79446 349.062 662.4315 349.01408 663.05319 349.35746 663.67996 349.70368 663.9805 350.26954 663.95486 351.05503 663.93038 351.84123 663.5801 352.8464 662.9039 354.07063 662.22488 355.29994 661.55947 356.13359 660.90768 356.5716 660.2565 357.01158 659.6175 357.05848 658.9907 356.71226ZM658.46188 357.66969C659.4639 358.22319 660.4482 358.2495 661.41458 357.7487 662.3802 357.24916 663.2794 356.24559 664.1121 354.738 664.94277 353.23423 665.31277 351.94004 665.2221 350.85539 665.1308 349.772 664.5841 348.95356 663.58206 348.40007 662.5812 347.84727 661.59799 347.82063 660.6323 348.32017 659.66598 348.82099 658.76748 349.82328 657.9368 351.32704 657.1041 352.83464 656.7334 354.13014 656.8247 355.2135 656.91537 356.29814 657.46109 357.11686 658.46188 357.66969ZM674.7329 363.37837 673.51437 359.1192 677.761 357.89625 677.4485 356.779 673.184 358.0071 671.95486 353.74458 670.8485 354.0781 672.0668 358.3196 667.82046 359.5602 668.1272 360.6743 672.39077 359.4432 673.6208 363.7087 674.7329 363.37837ZM683.3899 360.89549 685.3641 361.98594 681.5988 368.80268 679.68838 367.18513 679.0802 368.28617 680.9792 369.89735 682.1874 370.56474 686.56088 362.64698 688.53506 363.73744 689.0966 362.72065 683.95156 359.87873 683.3899 360.89549ZM689.6277 373.63484C689.00607 373.29145 688.7074 372.72666 688.7318 371.94047 688.75686 371.15626 689.1088 370.14949 689.78787 368.92018 690.46408 367.69596 691.12777 366.86387 691.77896 366.4239 692.43148 365.9846 693.06857 365.93666 693.6902 366.28004 694.31698 366.62626 694.6175 367.1921 694.5918 367.9776 694.5674 368.7638 694.2171 369.76899 693.5409 370.9932 692.8619 372.2225 692.1965 373.05616 691.5447 373.49418 690.8935 373.93415 690.2545 373.98106 689.6277 373.63484ZM689.0989 374.59226C690.10098 375.14576 691.0852 375.1721 692.0516 374.67127 693.0172 374.17173 693.9164 373.16816 694.74917 371.66059 695.5798 370.1568 695.94979 368.8626 695.85916 367.77796 695.7678 366.69459 695.2211 365.87614 694.219 365.32264 693.2182 364.76985 692.235 364.7432 691.26937 365.24275 690.303 365.74357 689.4045 366.74586 688.57388 368.2496 687.74118 369.7572 687.3704 371.0527 687.46176 372.13609 687.55239 373.2207 688.0981 374.03944 689.0989 374.59226ZM696.47006 377.43623C696.0903 377.22648 695.86099 376.9301 695.7821 376.54719 695.7036 376.16566 695.78927 375.74879 696.039 375.29664 696.28726 374.84718 696.5945 374.55274 696.96078 374.4133 697.32736 374.2753 697.70059 374.31117 698.0803 374.52095 698.4601 374.7307 698.6887 375.02726 698.76626 375.41059 698.8432 375.7948 698.75759 376.21168 698.5093 376.66114 698.2595 377.11329 697.9523 377.4077 697.5875 377.54447 697.2223 377.68208 696.8498 377.646 696.47006 377.43623ZM696.6843 381.0165 697.11007 380.2458C696.8421 380.2284 696.58547 380.18635 696.3401 380.11964 696.09426 380.05378 695.8649 379.96214 695.6523 379.84468 695.0938 379.53617 694.77127 379.11195 694.68466 378.572 694.59896 378.0325 694.7456 377.37007 695.12466 376.58464 695.1548 376.91853 695.2583 377.21885 695.4352 377.48564 695.6129 377.7529 695.851 377.96897 696.1495 378.13383 696.77767 378.4808 697.3794 378.5642 697.9547 378.384 698.5296 378.20475 698.99819 377.78715 699.3604 377.13127 699.71536 376.48878 699.81027 375.8683 699.64517 375.2698 699.4796 374.67225 699.08139 374.19923 698.4505 373.85075 697.7267 373.45097 697.02059 373.42243 696.3321 373.7652 695.6431 374.10887 695.00796 374.807 694.4265 375.85966 693.8806 376.84797 693.6799 377.76567 693.8242 378.61277 693.96859 379.45988 694.4357 380.10157 695.22567 380.5379 695.4383 380.65538 695.66439 380.7528 695.9038 380.83027 696.14328 380.9077 696.40347 380.9698 696.6843 381.0165ZM708.81948 378.34788 709.1167 377.80979 704.0539 375.01335C704.52127 374.28187 705.06887 373.83045 705.6966 373.6591 706.3244 373.4877 707.00338 373.60368 707.7336 374.007 708.15609 374.2404 708.5373 374.51844 708.8772 374.84114 709.2171 375.16383 709.5255 375.5374 709.8025 375.96199L710.37789 374.92033C710.07449 374.53453 709.7397 374.18299 709.3735 373.86573 709.00729 373.5485 708.61099 373.27214 708.1846 373.03663 707.11489 372.44575 706.0962 372.28874 705.12857 372.5656 704.1602 372.84379 703.38278 373.5139 702.7961 374.57597 702.1904 375.67253 702.00607 376.70606 702.243 377.6766 702.4792 378.64845 703.1003 379.41218 704.1062 379.96778 705.00747 380.4656 705.8808 380.56898 706.72628 380.27796 707.57107 379.9882 708.2688 379.34486 708.81948 378.34788ZM707.53976 378.0633C707.19998 378.66035 706.76638 379.04725 706.23886 379.22404 705.7107 379.4021 705.1753 379.34129 704.63278 379.04164 704.01876 378.70246 703.62319 378.2574 703.44607 377.7064 703.2689 377.1554 703.3264 376.54908 703.6186 375.88746L707.53976 378.0633ZM713.3787 383.53764C713.2154 383.5407 713.0518 383.51869 712.88796 383.47148 712.7234 383.42558 712.55368 383.3543 712.3788 383.25773 711.75588 382.9136 711.3895 382.44725 711.27987 381.85853 711.1702 381.26985 711.32479 380.59635 711.74368 379.83808L713.694 376.30717 712.5872 375.69584 708.8854 382.39768 709.9921 383.009 710.5675 381.96736C710.5749 382.5029 710.7094 382.97123 710.971 383.37229 711.2332 383.77534 711.6298 384.1235 712.1609 384.41685 712.2362 384.45845 712.32266 384.4995 712.42019 384.54008 712.517 384.5819 712.6266 384.6233 712.74899 384.6642L713.3787 383.53764ZM720.1832 384.3673C719.74258 385.16514 719.2366 385.69203 718.6654 385.94798 718.0947 386.20588 717.512 386.17057 716.9171 385.84199 716.3274 385.5162 715.9891 385.04283 715.9023 384.42176 715.8148 383.80198 715.9914 383.09318 716.43209 382.29536 716.87069 381.50135 717.3759 380.9757 717.9478 380.7185 718.5197 380.4613 719.1006 380.49559 719.6903 380.82133 720.2852 381.1499 720.62539 381.62437 720.7109 382.24473 720.79769 382.86576 720.62179 383.5733 720.1832 384.3673ZM722.7195 382.37705C723.3491 381.2371 723.5643 380.24888 723.3649 379.41239 723.1669 378.57658 722.54507 377.86994 721.4996 377.29246 721.1128 377.0788 720.7318 376.90589 720.3567 376.77366 719.98159 376.64143 719.5994 376.5461 719.21017 376.4877L718.6189 377.55809C719.0385 377.56159 719.42886 377.60896 719.79 377.70014 720.1518 377.79005 720.49618 377.92524 720.82296 378.10575 721.5455 378.50486 721.98208 378.99174 722.13278 379.56648 722.28347 380.14118 722.1484 380.80958 721.7274 381.5717L721.42599 382.1174C721.4173 381.59617 721.2895 381.13987 721.04257 380.74855 720.79556 380.3572 720.4244 380.02476 719.9291 379.75117 719.1083 379.2978 718.2736 379.24494 717.4252 379.59266 716.576 379.94163 715.86587 380.6331 715.2947 381.66709 714.72219 382.70365 714.5146 383.67359 714.67208 384.5769 714.8288 385.48149 715.31759 386.1605 716.1384 386.61387 716.6337 386.88746 717.11276 387.0246 717.5755 387.0253 718.03829 387.026 718.4922 386.8919 718.9373 386.62297L718.3757 387.6397 719.4767 388.24787 722.7195 382.37705ZM722.4685 392.81428 723.4852 393.3759 725.937 381.58528 724.9202 381.02366 722.4685 392.81428ZM730.83877 394.1889 731.4078 393.15876C731.0011 393.15904 730.6178 393.11558 730.25778 393.02836 729.89779 392.94114 729.5582 392.80937 729.2391 392.6331 728.52426 392.23823 728.09408 391.70494 727.94869 391.03318 727.80386 390.3634 727.9574 389.6194 728.40939 388.80113 728.8613 387.98286 729.4097 387.45606 730.05447 387.22077 730.6998 386.98747 731.3799 387.06825 732.0948 387.4631 732.4139 387.63938 732.70626 387.85667 732.97177 388.11494 733.23727 388.3732 733.47817 388.67454 733.69448 389.01893L734.2571 388.00025C734.02847 387.68736 733.76919 387.40419 733.4793 387.1508 733.1914 386.8968 732.86178 386.6672 732.4903 386.46205 731.4805 385.9043 730.503 385.77836 729.5577 386.08424 728.61367 386.39079 727.8441 387.08277 727.24899 388.16017 726.6454 389.2529 726.4709 390.2777 726.72537 391.23463 726.98037 392.19349 727.6306 392.96168 728.67617 393.53916 729.0144 393.726 729.36447 393.87355 729.7262 393.98173 730.0872 394.0912 730.45809 394.16026 730.83877 394.1889ZM738.54 397.09828C738.5421 397.74589 738.6698 398.29289 738.92306 398.7393 739.1763 399.1857 739.562 399.55207 740.08029 399.83833 740.77859 400.22404 741.4523 400.27714 742.10147 399.99763 742.74996 399.7194 743.3231 399.12968 743.8209 398.22843L746.0557 394.18244 744.949 393.5711 742.73428 397.58073C742.3796 398.2228 742.0023 398.63587 741.6025 398.81986 741.2032 399.00584 740.77059 398.97013 740.3046 398.71278 739.734 398.39759 739.3875 397.95875 739.265 397.3963 739.14309 396.83583 739.263 396.22816 739.6247 395.57328L741.7168 391.78578 740.61 391.17445 738.39529 395.18406C738.03848 395.83 737.66116 396.24467 737.2633 396.42808 736.8654 396.61149 736.4291 396.57206 735.9542 396.30976 735.39126 395.9988 735.0489 395.56147 734.9271 394.9977 734.8066 394.4347 734.92617 393.82765 735.28579 393.1766L737.3778 389.3891 736.27108 388.77778 732.5692 395.4796 733.67599 396.09095 734.25137 395.0493C734.2758 395.59925 734.4096 396.06886 734.6528 396.45805 734.89596 396.84727 735.2588 397.17515 735.74136 397.44169 736.22897 397.71104 736.7116 397.816 737.1892 397.75663 737.66616 397.69853 738.1164 397.47908 738.54 397.09828ZM745.2727 405.41035 746.2895 405.972 748.7412 394.18138 747.7244 393.61976 745.2727 405.41035ZM753.0587 406.53977 753.6341 405.49809C753.2357 405.48634 752.84689 405.42729 752.4674 405.32099 752.08859 405.21669 751.7191 405.0651 751.35916 404.86625 750.81277 404.56446 750.44918 404.25453 750.2684 403.9364 750.0875 403.6183 750.08987 403.29136 750.2753 402.95564 750.4163 402.70033 750.6247 402.55384 750.9004 402.51618 751.1761 402.47856 751.64578 402.55723 752.30947 402.7522L752.73318 402.8763C753.6068 403.1406 754.29257 403.21116 754.7904 403.08799 755.28829 402.9648 755.6881 402.63005 755.98989 402.08369 756.334 401.46073 756.3601 400.83128 756.06838 400.19529 755.7758 399.56056 755.1987 399.00526 754.3371 398.5293 753.9784 398.33116 753.58499 398.15968 753.15689 398.0148 752.7287 397.86997 752.2611 397.7483 751.7541 397.6498L751.1258 398.78724C751.6501 398.80024 752.13876 398.86274 752.5917 398.97465 753.04397 399.08787 753.4641 399.25163 753.8522 399.46598 754.3705 399.75227 754.7197 400.06098 754.9 400.39213 755.08157 400.72398 755.0831 401.0514 754.9048 401.37437 754.73977 401.67308 754.5123 401.8465 754.22256 401.89466 753.93399 401.9435 753.4073 401.8534 752.6426 401.62425L752.2099 401.5027C751.4493 401.26914 750.8349 401.21717 750.36679 401.34678 749.89999 401.4771 749.5234 401.80143 749.2371 402.31968 748.8888 402.9503 748.84359 403.56007 749.1014 404.14897 749.35848 404.73915 749.8981 405.26127 750.72018 405.71537 751.1261 405.93959 751.525 406.12077 751.9169 406.2589 752.30929 406.39903 752.6899 406.49266 753.0587 406.53977ZM755.78628 411.21757 756.803 411.7792 759.25479 399.9886 758.238 399.42698 755.78628 411.21757ZM758.006 412.44367 759.21426 413.11106 761.2999 409.33506 763.2239 415.3258 764.7806 416.18568 762.6463 409.5714 770.0316 407.42567 768.44039 406.54676 761.7727 408.47914 764.1493 404.17655 762.94107 403.50917 758.006 412.44367Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7273 335.36 624.8628 335.98719 625.8558 332.90458 627.75418 337.58427 629.09457 338.32463 627.3588 334.0697 631.90408 331.1299 630.5579 330.38636 626.8402 332.84608 626.29757 331.53926 627.2606 328.56507 626.1232 327.93684 623.7273 335.36ZM633.46768 339.25575 641.1384 343.49275 641.69369 342.48747 634.02297 338.25047 633.46768 339.25575ZM634.81619 336.81437 642.48696 341.05134 643.0485 340.03459 635.3778 335.79759 634.81619 336.81437ZM650.2104 347.52909C650.85708 347.72468 651.45077 347.71607 651.99148 347.50328 652.5328 347.29246 652.96206 346.8998 653.27938 346.32539 653.76589 345.44456 653.83956 344.5948 653.5004 343.77607 653.1606 342.9586 652.4322 342.2414 651.31527 341.62443 650.9412 341.41783 650.5352 341.24189 650.09738 341.09666 649.6594 340.9514 649.18838 340.83613 648.684 340.7508L648.0399 341.91694C648.48226 341.90635 648.93008 341.96128 649.3833 342.0817 649.8379 342.20283 650.2828 342.3836 650.7181 342.62406 651.4751 343.04219 651.9696 343.51026 652.2016 344.02827 652.4336 344.54624 652.392 345.09056 652.07687 345.66117 651.78567 346.1884 651.3738 346.49818 650.84127 346.59056 650.30807 346.6842 649.7127 346.54948 649.0553 346.18635L648.0137 345.611 647.4647 346.60478 648.55429 347.20658C649.1478 347.53446 649.53677 347.90419 649.7209 348.3158 649.905 348.7274 649.8737 349.1566 649.62698 349.60337 649.3738 350.06166 649.0168 350.32344 648.5559 350.38874 648.0956 350.456 647.5622 350.32218 646.9559 349.98725 646.62399 349.80393 646.2885 349.57118 645.9496 349.289 645.6099 349.0081 645.2545 348.6668 644.88327 348.26518L644.2889 349.34129C644.6779 349.72279 645.0552 350.05616 645.4208 350.34138 645.7864 350.6266 646.1466 350.86723 646.50149 351.06324 647.4193 351.57023 648.2603 351.76237 649.0245 351.63969 649.7892 351.51896 650.3676 351.10374 650.75967 350.39396 651.0332 349.89866 651.12246 349.4023 651.0273 348.90498 650.9322 348.4076 650.65988 347.94898 650.2104 347.52909ZM656.1655 346.51515 657.4293 347.2132 658.2691 345.69285 657.0053 344.99479 656.1655 346.51515ZM658.9907 356.71226C658.369 356.36888 658.0704 355.80409 658.09487 355.01789 658.1198 354.23368 658.4718 353.2269 659.1508 351.9976 659.827 350.77339 660.4907 349.94129 661.14199 349.5013 661.79446 349.062 662.4315 349.01408 663.05319 349.35746 663.67996 349.70368 663.9805 350.26954 663.95486 351.05503 663.93038 351.84123 663.5801 352.8464 662.9039 354.07063 662.22488 355.29994 661.55947 356.13359 660.90768 356.5716 660.2565 357.01158 659.6175 357.05848 658.9907 356.71226ZM658.46188 357.66969C659.4639 358.22319 660.4482 358.2495 661.41458 357.7487 662.3802 357.24916 663.2794 356.24559 664.1121 354.738 664.94277 353.23423 665.31277 351.94004 665.2221 350.85539 665.1308 349.772 664.5841 348.95356 663.58206 348.40007 662.5812 347.84727 661.59799 347.82063 660.6323 348.32017 659.66598 348.82099 658.76748 349.82328 657.9368 351.32704 657.1041 352.83464 656.7334 354.13014 656.8247 355.2135 656.91537 356.29814 657.46109 357.11686 658.46188 357.66969ZM674.7329 363.37837 673.51437 359.1192 677.761 357.89625 677.4485 356.779 673.184 358.0071 671.95486 353.74458 670.8485 354.0781 672.0668 358.3196 667.82046 359.5602 668.1272 360.6743 672.39077 359.4432 673.6208 363.7087 674.7329 363.37837ZM683.3899 360.89549 685.3641 361.98594 681.5988 368.80268 679.68838 367.18513 679.0802 368.28617 680.9792 369.89735 682.1874 370.56474 686.56088 362.64698 688.53506 363.73744 689.0966 362.72065 683.95156 359.87873 683.3899 360.89549ZM689.6277 373.63484C689.00607 373.29145 688.7074 372.72666 688.7318 371.94047 688.75686 371.15626 689.1088 370.14949 689.78787 368.92018 690.46408 367.69596 691.12777 366.86387 691.77896 366.4239 692.43148 365.9846 693.06857 365.93666 693.6902 366.28004 694.31698 366.62626 694.6175 367.1921 694.5918 367.9776 694.5674 368.7638 694.2171 369.76899 693.5409 370.9932 692.8619 372.2225 692.1965 373.05616 691.5447 373.49418 690.8935 373.93415 690.2545 373.98106 689.6277 373.63484ZM689.0989 374.59226C690.10098 375.14576 691.0852 375.1721 692.0516 374.67127 693.0172 374.17173 693.9164 373.16816 694.74917 371.66059 695.5798 370.1568 695.94979 368.8626 695.85916 367.77796 695.7678 366.69459 695.2211 365.87614 694.219 365.32264 693.2182 364.76985 692.235 364.7432 691.26937 365.24275 690.303 365.74357 689.4045 366.74586 688.57388 368.2496 687.74118 369.7572 687.3704 371.0527 687.46176 372.13609 687.55239 373.2207 688.0981 374.03944 689.0989 374.59226ZM696.47006 377.43623C696.0903 377.22648 695.86099 376.9301 695.7821 376.54719 695.7036 376.16566 695.78927 375.74879 696.039 375.29664 696.28726 374.84718 696.5945 374.55274 696.96078 374.4133 697.32736 374.2753 697.70059 374.31117 698.0803 374.52095 698.4601 374.7307 698.6887 375.02726 698.76626 375.41059 698.8432 375.7948 698.75759 376.21168 698.5093 376.66114 698.2595 377.11329 697.9523 377.4077 697.5875 377.54447 697.2223 377.68208 696.8498 377.646 696.47006 377.43623ZM696.6843 381.0165 697.11007 380.2458C696.8421 380.2284 696.58547 380.18635 696.3401 380.11964 696.09426 380.05378 695.8649 379.96214 695.6523 379.84468 695.0938 379.53617 694.77127 379.11195 694.68466 378.572 694.59896 378.0325 694.7456 377.37007 695.12466 376.58464 695.1548 376.91853 695.2583 377.21885 695.4352 377.48564 695.6129 377.7529 695.851 377.96897 696.1495 378.13383 696.77767 378.4808 697.3794 378.5642 697.9547 378.384 698.5296 378.20475 698.99819 377.78715 699.3604 377.13127 699.71536 376.48878 699.81027 375.8683 699.64517 375.2698 699.4796 374.67225 699.08139 374.19923 698.4505 373.85075 697.7267 373.45097 697.02059 373.42243 696.3321 373.7652 695.6431 374.10887 695.00796 374.807 694.4265 375.85966 693.8806 376.84797 693.6799 377.76567 693.8242 378.61277 693.96859 379.45988 694.4357 380.10157 695.22567 380.5379 695.4383 380.65538 695.66439 380.7528 695.9038 380.83027 696.14328 380.9077 696.40347 380.9698 696.6843 381.0165ZM708.81948 378.34788 709.1167 377.80979 704.0539 375.01335C704.52127 374.28187 705.06887 373.83045 705.6966 373.6591 706.3244 373.4877 707.00338 373.60368 707.7336 374.007 708.15609 374.2404 708.5373 374.51844 708.8772 374.84114 709.2171 375.16383 709.5255 375.5374 709.8025 375.96199L710.37789 374.92033C710.07449 374.53453 709.7397 374.18299 709.3735 373.86573 709.00729 373.5485 708.61099 373.27214 708.1846 373.03663 707.11489 372.44575 706.0962 372.28874 705.12857 372.5656 704.1602 372.84379 703.38278 373.5139 702.7961 374.57597 702.1904 375.67253 702.00607 376.70606 702.243 377.6766 702.4792 378.64845 703.1003 379.41218 704.1062 379.96778 705.00747 380.4656 705.8808 380.56898 706.72628 380.27796 707.57107 379.9882 708.2688 379.34486 708.81948 378.34788ZM707.53976 378.0633C707.19998 378.66035 706.76638 379.04725 706.23886 379.22404 705.7107 379.4021 705.1753 379.34129 704.63278 379.04164 704.01876 378.70246 703.62319 378.2574 703.44607 377.7064 703.2689 377.1554 703.3264 376.54908 703.6186 375.88746L707.53976 378.0633ZM713.3787 383.53764C713.2154 383.5407 713.0518 383.51869 712.88796 383.47148 712.7234 383.42558 712.55368 383.3543 712.3788 383.25773 711.75588 382.9136 711.3895 382.44725 711.27987 381.85853 711.1702 381.26985 711.32479 380.59635 711.74368 379.83808L713.694 376.30717 712.5872 375.69584 708.8854 382.39768 709.9921 383.009 710.5675 381.96736C710.5749 382.5029 710.7094 382.97123 710.971 383.37229 711.2332 383.77534 711.6298 384.1235 712.1609 384.41685 712.2362 384.45845 712.32266 384.4995 712.42019 384.54008 712.517 384.5819 712.6266 384.6233 712.74899 384.6642L713.3787 383.53764ZM720.1832 384.3673C719.74258 385.16514 719.2366 385.69203 718.6654 385.94798 718.0947 386.20588 717.512 386.17057 716.9171 385.84199 716.3274 385.5162 715.9891 385.04283 715.9023 384.42176 715.8148 383.80198 715.9914 383.09318 716.43209 382.29536 716.87069 381.50135 717.3759 380.9757 717.9478 380.7185 718.5197 380.4613 719.1006 380.49559 719.6903 380.82133 720.2852 381.1499 720.62539 381.62437 720.7109 382.24473 720.79769 382.86576 720.62179 383.5733 720.1832 384.3673ZM722.7195 382.37705C723.3491 381.2371 723.5643 380.24888 723.3649 379.41239 723.1669 378.57658 722.54507 377.86994 721.4996 377.29246 721.1128 377.0788 720.7318 376.90589 720.3567 376.77366 719.98159 376.64143 719.5994 376.5461 719.21017 376.4877L718.6189 377.55809C719.0385 377.56159 719.42886 377.60896 719.79 377.70014 720.1518 377.79005 720.49618 377.92524 720.82296 378.10575 721.5455 378.50486 721.98208 378.99174 722.13278 379.56648 722.28347 380.14118 722.1484 380.80958 721.7274 381.5717L721.42599 382.1174C721.4173 381.59617 721.2895 381.13987 721.04257 380.74855 720.79556 380.3572 720.4244 380.02476 719.9291 379.75117 719.1083 379.2978 718.2736 379.24494 717.4252 379.59266 716.576 379.94163 715.86587 380.6331 715.2947 381.66709 714.72219 382.70365 714.5146 383.67359 714.67208 384.5769 714.8288 385.48149 715.31759 386.1605 716.1384 386.61387 716.6337 386.88746 717.11276 387.0246 717.5755 387.0253 718.03829 387.026 718.4922 386.8919 718.9373 386.62297L718.3757 387.6397 719.4767 388.24787 722.7195 382.37705ZM722.4685 392.81428 723.4852 393.3759 725.937 381.58528 724.9202 381.02366 722.4685 392.81428ZM730.83877 394.1889 731.4078 393.15876C731.0011 393.15904 730.6178 393.11558 730.25778 393.02836 729.89779 392.94114 729.5582 392.80937 729.2391 392.6331 728.52426 392.23823 728.09408 391.70494 727.94869 391.03318 727.80386 390.3634 727.9574 389.6194 728.40939 388.80113 728.8613 387.98286 729.4097 387.45606 730.05447 387.22077 730.6998 386.98747 731.3799 387.06825 732.0948 387.4631 732.4139 387.63938 732.70626 387.85667 732.97177 388.11494 733.23727 388.3732 733.47817 388.67454 733.69448 389.01893L734.2571 388.00025C734.02847 387.68736 733.76919 387.40419 733.4793 387.1508 733.1914 386.8968 732.86178 386.6672 732.4903 386.46205 731.4805 385.9043 730.503 385.77836 729.5577 386.08424 728.61367 386.39079 727.8441 387.08277 727.24899 388.16017 726.6454 389.2529 726.4709 390.2777 726.72537 391.23463 726.98037 392.19349 727.6306 392.96168 728.67617 393.53916 729.0144 393.726 729.36447 393.87355 729.7262 393.98173 730.0872 394.0912 730.45809 394.16026 730.83877 394.1889ZM738.54 397.09828C738.5421 397.74589 738.6698 398.29289 738.92306 398.7393 739.1763 399.1857 739.562 399.55207 740.08029 399.83833 740.77859 400.22404 741.4523 400.27714 742.10147 399.99763 742.74996 399.7194 743.3231 399.12968 743.8209 398.22843L746.0557 394.18244 744.949 393.5711 742.73428 397.58073C742.3796 398.2228 742.0023 398.63587 741.6025 398.81986 741.2032 399.00584 740.77059 398.97013 740.3046 398.71278 739.734 398.39759 739.3875 397.95875 739.265 397.3963 739.14309 396.83583 739.263 396.22816 739.6247 395.57328L741.7168 391.78578 740.61 391.17445 738.39529 395.18406C738.03848 395.83 737.66116 396.24467 737.2633 396.42808 736.8654 396.61149 736.4291 396.57206 735.9542 396.30976 735.39126 395.9988 735.0489 395.56147 734.9271 394.9977 734.8066 394.4347 734.92617 393.82765 735.28579 393.1766L737.3778 389.3891 736.27108 388.77778 732.5692 395.4796 733.67599 396.09095 734.25137 395.0493C734.2758 395.59925 734.4096 396.06886 734.6528 396.45805 734.89596 396.84727 735.2588 397.17515 735.74136 397.44169 736.22897 397.71104 736.7116 397.816 737.1892 397.75663 737.66616 397.69853 738.1164 397.47908 738.54 397.09828ZM745.2727 405.41035 746.2895 405.972 748.7412 394.18138 747.7244 393.61976 745.2727 405.41035ZM753.0587 406.53977 753.6341 405.49809C753.2357 405.48634 752.84689 405.42729 752.4674 405.32099 752.08859 405.21669 751.7191 405.0651 751.35916 404.86625 750.81277 404.56446 750.44918 404.25453 750.2684 403.9364 750.0875 403.6183 750.08987 403.29136 750.2753 402.95564 750.4163 402.70033 750.6247 402.55384 750.9004 402.51618 751.1761 402.47856 751.64578 402.55723 752.30947 402.7522L752.73318 402.8763C753.6068 403.1406 754.29257 403.21116 754.7904 403.08799 755.28829 402.9648 755.6881 402.63005 755.98989 402.08369 756.334 401.46073 756.3601 400.83128 756.06838 400.19529 755.7758 399.56056 755.1987 399.00526 754.3371 398.5293 753.9784 398.33116 753.58499 398.15968 753.15689 398.0148 752.7287 397.86997 752.2611 397.7483 751.7541 397.6498L751.1258 398.78724C751.6501 398.80024 752.13876 398.86274 752.5917 398.97465 753.04397 399.08787 753.4641 399.25163 753.8522 399.46598 754.3705 399.75227 754.7197 400.06098 754.9 400.39213 755.08157 400.72398 755.0831 401.0514 754.9048 401.37437 754.73977 401.67308 754.5123 401.8465 754.22256 401.89466 753.93399 401.9435 753.4073 401.8534 752.6426 401.62425L752.2099 401.5027C751.4493 401.26914 750.8349 401.21717 750.36679 401.34678 749.89999 401.4771 749.5234 401.80143 749.2371 402.31968 748.8888 402.9503 748.84359 403.56007 749.1014 404.14897 749.35848 404.73915 749.8981 405.26127 750.72018 405.71537 751.1261 405.93959 751.525 406.12077 751.9169 406.2589 752.30929 406.39903 752.6899 406.49266 753.0587 406.53977ZM755.78628 411.21757 756.803 411.7792 759.25479 399.9886 758.238 399.42698 755.78628 411.21757ZM758.006 412.44367 759.21426 413.11106 761.2999 409.33506 763.2239 415.3258 764.7806 416.18568 762.6463 409.5714 770.0316 407.42567 768.44039 406.54676 761.7727 408.47914 764.1493 404.17655 762.94107 403.50917 758.006 412.44367Z" fill="#9acd32"/> | |
| </g> | |
| <g clip-path="url(#clip_35)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7328 389.71684 624.8683 390.34403 625.86129 387.2614 627.75967 391.94108 629.10006 392.68147 627.3644 388.42655 631.90957 385.48674 630.5634 384.7432 626.8457 387.2029 626.30307 385.89607 627.2661 382.9219 626.1287 382.29365 623.7328 389.71684ZM633.47317 393.61259 641.1439 397.84956 641.69918 396.84428 634.02847 392.6073 633.47317 393.61259ZM634.82168 391.17118 642.49246 395.40818 643.054 394.39143 635.3833 390.15443 634.82168 391.17118ZM650.2159 401.88594C650.86257 402.0815 651.45626 402.0729 651.99697 401.8601 652.53829 401.6493 652.9675 401.25666 653.28488 400.68223 653.77139 399.8014 653.84506 398.95164 653.5059 398.13288 653.16616 397.31544 652.4377 396.5982 651.32077 395.98124 650.9467 395.77467 650.5408 395.59873 650.10287 395.45347 649.6649 395.30824 649.19387 395.19294 648.6895 395.10765L648.0454 396.27375C648.48776 396.26319 648.93557 396.3181 649.3888 396.43855 649.8434 396.55967 650.28829 396.74046 650.7236 396.9809 651.4806 397.39903 651.9751 397.86708 652.2071 398.38508 652.4391 398.90309 652.3975 399.4474 652.08236 400.018 651.79116 400.5452 651.3793 400.855 650.84677 400.9474 650.31356 401.04106 649.71829 400.9063 649.0608 400.54319L648.01919 399.9678 647.4702 400.9616 648.55978 401.56343C649.1534 401.8913 649.54226 402.26103 649.7264 402.6726 649.9105 403.08424 649.8792 403.5134 649.63247 403.9602 649.3793 404.4185 649.0223 404.68028 648.5614 404.74555 648.1011 404.81285 647.5677 404.67903 646.96139 404.3441 646.62948 404.16078 646.294 403.928 645.9551 403.6458 645.6154 403.36494 645.26 403.02366 644.88876 402.62199L644.2944 403.69813C644.6834 404.07963 645.0607 404.41297 645.4263 404.6982 645.7919 404.98344 646.1521 405.22407 646.50698 405.42008 647.4248 405.92707 648.2658 406.1192 649.02999 405.9965 649.7947 405.8758 650.3731 405.46055 650.76516 404.7508 651.0387 404.2555 651.1279 403.75917 651.03286 403.26179 650.9377 402.7644 650.6654 402.3058 650.2159 401.88594ZM656.171 400.87199 657.4348 401.57005 658.2746 400.04966 657.0108 399.3516 656.171 400.87199ZM658.9962 411.0691C658.3745 410.7257 658.0759 410.16093 658.10037 409.3747 658.1253 408.59049 658.4773 407.58375 659.1563 406.35444 659.8325 405.13023 660.4962 404.29814 661.14749 403.85813 661.7999 403.41886 662.437 403.3709 663.05868 403.7143 663.6855 404.0605 663.986 404.62635 663.9603 405.41184 663.93588 406.19804 663.5856 407.20326 662.90939 408.42744 662.23037 409.65675 661.56497 410.49043 660.9132 410.9284 660.26199 411.3684 659.623 411.41529 658.9962 411.0691ZM658.46737 412.0265C659.4695 412.58 660.4537 412.60636 661.42007 412.10554 662.3857 411.606 663.2849 410.60243 664.1176 409.09483 664.94827 407.59107 665.31826 406.29685 665.2276 405.2122 665.1363 404.12886 664.5896 403.3104 663.5875 402.75688 662.5867 402.20408 661.60348 402.17747 660.6378 402.677 659.67147 403.1778 658.77297 404.18009 657.9423 405.68388 657.1096 407.19148 656.7389 408.48695 656.83029 409.5703 656.92086 410.65498 657.46658 411.4737 658.46737 412.0265ZM674.7384 417.7352 673.51986 413.47605 677.7665 412.25309 677.454 411.13584 673.1895 412.36393 671.9603 408.1014 670.854 408.43495 672.07229 412.67646 667.8259 413.91703 668.1327 415.0311 672.39627 413.80006 673.6263 418.06556 674.7384 417.7352ZM683.3954 415.25233 685.36959 416.34275 681.6043 423.1595 679.69387 421.54197 679.0857 422.64299 680.9847 424.25416 682.19296 424.92155 686.56637 417.00379 688.5405 418.09425 689.1021 417.07749 683.95706 414.23554 683.3954 415.25233ZM689.63327 427.99168C689.01156 427.6483 688.7129 427.0835 688.7373 426.29728 688.7623 425.51307 689.1143 424.50633 689.79336 423.277 690.46957 422.0528 691.13327 421.2207 691.7844 420.7807 692.43698 420.34144 693.07406 420.2935 693.6957 420.63688 694.32247 420.98307 694.623 421.54893 694.5973 422.3344 694.5729 423.1206 694.2226 424.12583 693.5464 425.35 692.8674 426.5793 692.20199 427.413 691.5502 427.85099 690.899 428.291 690.26 428.33787 689.63327 427.99168ZM689.1044 428.94908C690.10647 429.50257 691.0907 429.52894 692.05709 429.0281 693.0227 428.52857 693.9219 427.525 694.75466 426.0174 695.58529 424.51365 695.95529 423.21943 695.8646 422.13478 695.7733 421.05143 695.2266 420.23298 694.22457 419.67945 693.2237 419.12666 692.2405 419.10005 691.27487 419.59959 690.3085 420.10038 689.41 421.10267 688.57937 422.60646 687.74667 424.11405 687.3759 425.40953 687.4672 426.4929 687.55789 427.57756 688.1036 428.39628 689.1044 428.94908ZM692.8056 433.40803 696.8267 435.6291 697.0259 435.26856 698.0106 428.12077 697.1273 427.63288 696.20327 434.3541 693.19949 432.69496 692.8056 433.40803ZM708.825 432.70469 709.1222 432.16664 704.05947 429.37019C704.5268 428.6387 705.07437 428.1873 705.7021 428.0159 706.3299 427.84455 707.00888 427.9605 707.7391 428.36384 708.16159 428.59724 708.5428 428.87528 708.8827 429.19795 709.2226 429.52064 709.531 429.89427 709.808 430.3188L710.38339 429.27714C710.08 428.89134 709.7452 428.5398 709.37899 428.22257 709.01278 427.90534 708.61648 427.62895 708.19009 427.39344 707.12039 426.80256 706.1017 426.64558 705.13406 426.92247 704.1657 427.2006 703.38827 427.87074 702.8016 428.9328 702.1959 430.02937 702.01156 431.0629 702.2485 432.03346 702.48477 433.00529 703.1058 433.76899 704.1117 434.32463 705.01296 434.82243 705.8863 434.9258 706.7318 434.6348 707.57656 434.34504 708.2743 433.70167 708.825 432.70469ZM707.5452 432.42015C707.20547 433.01716 706.77188 433.40406 706.2443 433.58085 705.7162 433.7589 705.1808 433.69813 704.63827 433.39845 704.02426 433.0593 703.62869 432.61424 703.45156 432.06324 703.2744 431.51225 703.3319 430.9059 703.6241 430.24427L707.5452 432.42015ZM713.3842 437.89448C713.2209 437.89756 713.0573 437.8755 712.89346 437.8283 712.7289 437.7824 712.55917 437.71116 712.3843 437.61454 711.76138 437.27046 711.395 436.80406 711.28536 436.21537 711.1757 435.62666 711.3303 434.9532 711.74917 434.19493L713.69949 430.664 712.5927 430.05268 708.89089 436.75453 709.9976 437.36585 710.573 436.3242C710.5804 436.85975 710.7149 437.32804 710.9765 437.7291 711.2387 438.13215 711.6353 438.48036 712.1664 438.77369 712.2417 438.81529 712.3281 438.85636 712.42568 438.8969 712.5225 438.93873 712.6321 438.9801 712.75448 439.02104L713.3842 437.89448ZM720.1887 438.72413C719.74807 439.52198 719.24209 440.04887 718.6709 440.30479 718.1003 440.5627 717.5175 440.52738 716.9226 440.1988 716.3329 439.87306 715.99459 439.39964 715.9078 438.7786 715.8203 438.1588 715.9969 437.45 716.4376 436.65217 716.87619 435.85816 717.3814 435.33256 717.9533 435.07536 718.5252 434.8181 719.1061 434.8524 719.6958 435.17817 720.2907 435.50675 720.63088 435.9812 720.7164 436.60154 720.80319 437.2226 720.6273 437.9301 720.1887 438.72413ZM722.725 436.7339C723.3546 435.59394 723.56979 434.6057 723.3704 433.7692 723.17239 432.9334 722.55056 432.22679 721.50509 431.6493 721.1183 431.43565 720.7373 431.2627 720.3622 431.13047 719.98709 430.99824 719.6049 430.90293 719.21566 430.84455L718.62448 431.91493C719.044 431.91844 719.4343 431.96577 719.7955 432.05696 720.15737 432.14686 720.50167 432.28208 720.8284 432.4626 721.55099 432.86167 721.98757 433.34858 722.13827 433.92329 722.289 434.498 722.1539 435.1664 721.7329 435.9285L721.43148 436.4742C721.42288 435.95298 721.295 435.4967 721.04806 435.10539 720.801 434.71406 720.4299 434.3816 719.9346 434.108 719.1138 433.65464 718.2791 433.60179 717.43069 433.94947 716.5815 434.29844 715.87136 434.98994 715.3002 436.02394 714.72769 437.0605 714.5201 438.0304 714.67758 438.93373 714.8343 439.83833 715.3231 440.5173 716.1439 440.9707 716.6392 441.24427 717.1182 441.3814 717.581 441.38215 718.04379 441.38285 718.4977 441.24873 718.9428 440.97978L718.38119 441.99656 719.4822 442.6047 722.725 436.7339ZM722.474 447.1711 723.4908 447.73274 725.9425 435.9421 724.9257 435.3805 722.474 447.1711ZM730.84426 448.54576 731.41329 447.51557C731.0066 447.51588 730.6233 447.47239 730.26327 447.38517 729.90328 447.29795 729.5637 447.1662 729.24459 446.98994 728.5297 446.59507 728.09957 446.06178 727.95419 445.38999 727.8093 444.7202 727.9629 443.9762 728.41488 443.15794 728.8668 442.3397 729.4152 441.8129 730.05996 441.5776 730.7053 441.3443 731.3854 441.42509 732.1003 441.81993 732.4194 441.99623 732.71176 442.21348 732.97726 442.47178 733.24276 442.73005 733.48367 443.03138 733.69998 443.37577L734.26266 442.35707C734.03396 442.04417 733.77468 441.76103 733.4848 441.5076 733.1969 441.25364 732.86727 441.02406 732.4958 440.81889 731.486 440.26115 730.5085 440.1352 729.5632 440.44105 728.61917 440.74763 727.8496 441.4396 727.25448 442.517 726.6509 443.6097 726.4764 444.63453 726.73086 445.59144 726.9859 446.55033 727.63619 447.3185 728.68167 447.896 729.0199 448.08287 729.36996 448.23039 729.7317 448.33857 730.0927 448.448 730.46359 448.51707 730.84426 448.54576ZM738.5455 451.4551C738.5476 452.1027 738.6753 452.64973 738.9285 453.09614 739.18179 453.54255 739.5675 453.90888 740.08578 454.19517 740.78408 454.58085 741.45779 454.63395 742.10696 454.35447 742.75546 454.07624 743.3286 453.4865 743.8264 452.58528L746.0612 448.53926 744.95449 447.92793 742.73977 451.93757C742.3851 452.57966 742.0078 452.9927 741.608 453.17668 741.2087 453.36265 740.77609 453.32695 740.3102 453.06959 739.73959 452.7544 739.393 452.31559 739.2705 451.7531 739.1486 451.19264 739.2685 450.58497 739.6302 449.9301L741.7223 446.1426 740.6155 445.53129 738.40078 449.5409C738.044 450.18684 737.6667 450.6015 737.2688 450.7849 736.8709 450.96833 736.4346 450.92887 735.9597 450.66658 735.3967 450.35563 735.0544 449.91828 734.9326 449.35456 734.8121 448.7915 734.93167 448.18449 735.29129 447.53346L737.3833 443.74595 736.27658 443.1346 732.5747 449.83647 733.68148 450.44779 734.25686 449.40614C734.2813 449.9561 734.4151 450.42567 734.65829 450.81489 734.9014 451.2041 735.2643 451.53199 735.7468 451.7985 736.23446 452.06785 736.7171 452.17283 737.1947 452.11344 737.67166 452.05534 738.1219 451.83589 738.5455 451.4551ZM745.2782 459.76719 746.295 460.3288 748.7467 448.53819 747.7299 447.97657 745.2782 459.76719ZM753.0642 460.89659 753.6396 459.85493C753.2413 459.84315 752.85238 459.78413 752.4729 459.67784 752.09408 459.5735 751.7246 459.4219 751.3646 459.22309 750.81826 458.9213 750.45468 458.61134 750.27389 458.2932 750.0931 457.9751 750.09536 457.64817 750.2808 457.31245 750.4218 457.05714 750.6302 456.91069 750.9059 456.87303 751.1816 456.83537 751.65127 456.91404 752.31497 457.109L752.73867 457.23313C753.6123 457.49745 754.29806 457.568 754.7959 457.44483 755.29379 457.32164 755.6936 456.98689 755.99539 456.44053 756.3395 455.81758 756.3656 455.18809 756.07388 454.5521 755.7813 453.9174 755.2043 453.36207 754.3426 452.8861 753.9839 452.688 753.59048 452.51649 753.16238 452.37165 752.7342 452.2268 752.2666 452.10514 751.7596 452.00666L751.13137 453.14405C751.6556 453.15708 752.1442 453.21955 752.59719 453.33149 753.04946 453.44468 753.4696 453.60847 753.85769 453.8228 754.376 454.10908 754.7252 454.4178 754.9055 454.74894 755.0871 455.0808 755.0886 455.4082 754.9103 455.73118 754.74526 456.02989 754.5178 456.20335 754.228 456.2515 753.93948 456.30036 753.41287 456.2102 752.6481 455.98106L752.2154 455.85954C751.4548 455.62599 750.8404 455.574 750.37228 455.7036 749.90548 455.83396 749.5289 456.15824 749.2426 456.6765 748.8943 457.30714 748.84909 457.91688 749.1069 458.5058 749.36398 459.09596 749.90359 459.6181 750.72567 460.07218 751.1316 460.29643 751.5305 460.4776 751.92239 460.61573 752.31478 460.75587 752.6954 460.84947 753.0642 460.89659ZM755.79177 465.5744 756.80856 466.13603 759.26028 454.3454 758.24349 453.78379 755.79177 465.5744ZM758.0115 466.8005 759.2197 467.4679 761.3054 463.69187 763.2294 469.68263 764.7861 470.5425 762.6518 463.92826 770.0371 461.7825 768.44589 460.9036 761.7782 462.83595 764.1548 458.53337 762.94656 457.86598 758.0115 466.8005Z" fill="#4682b4"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M623.7328 389.71684 624.8683 390.34403 625.86129 387.2614 627.75967 391.94108 629.10006 392.68147 627.3644 388.42655 631.90957 385.48674 630.5634 384.7432 626.8457 387.2029 626.30307 385.89607 627.2661 382.9219 626.1287 382.29365 623.7328 389.71684ZM633.47317 393.61259 641.1439 397.84956 641.69918 396.84428 634.02847 392.6073 633.47317 393.61259ZM634.82168 391.17118 642.49246 395.40818 643.054 394.39143 635.3833 390.15443 634.82168 391.17118ZM650.2159 401.88594C650.86257 402.0815 651.45626 402.0729 651.99697 401.8601 652.53829 401.6493 652.9675 401.25666 653.28488 400.68223 653.77139 399.8014 653.84506 398.95164 653.5059 398.13288 653.16616 397.31544 652.4377 396.5982 651.32077 395.98124 650.9467 395.77467 650.5408 395.59873 650.10287 395.45347 649.6649 395.30824 649.19387 395.19294 648.6895 395.10765L648.0454 396.27375C648.48776 396.26319 648.93557 396.3181 649.3888 396.43855 649.8434 396.55967 650.28829 396.74046 650.7236 396.9809 651.4806 397.39903 651.9751 397.86708 652.2071 398.38508 652.4391 398.90309 652.3975 399.4474 652.08236 400.018 651.79116 400.5452 651.3793 400.855 650.84677 400.9474 650.31356 401.04106 649.71829 400.9063 649.0608 400.54319L648.01919 399.9678 647.4702 400.9616 648.55978 401.56343C649.1534 401.8913 649.54226 402.26103 649.7264 402.6726 649.9105 403.08424 649.8792 403.5134 649.63247 403.9602 649.3793 404.4185 649.0223 404.68028 648.5614 404.74555 648.1011 404.81285 647.5677 404.67903 646.96139 404.3441 646.62948 404.16078 646.294 403.928 645.9551 403.6458 645.6154 403.36494 645.26 403.02366 644.88876 402.62199L644.2944 403.69813C644.6834 404.07963 645.0607 404.41297 645.4263 404.6982 645.7919 404.98344 646.1521 405.22407 646.50698 405.42008 647.4248 405.92707 648.2658 406.1192 649.02999 405.9965 649.7947 405.8758 650.3731 405.46055 650.76516 404.7508 651.0387 404.2555 651.1279 403.75917 651.03286 403.26179 650.9377 402.7644 650.6654 402.3058 650.2159 401.88594ZM656.171 400.87199 657.4348 401.57005 658.2746 400.04966 657.0108 399.3516 656.171 400.87199ZM658.9962 411.0691C658.3745 410.7257 658.0759 410.16093 658.10037 409.3747 658.1253 408.59049 658.4773 407.58375 659.1563 406.35444 659.8325 405.13023 660.4962 404.29814 661.14749 403.85813 661.7999 403.41886 662.437 403.3709 663.05868 403.7143 663.6855 404.0605 663.986 404.62635 663.9603 405.41184 663.93588 406.19804 663.5856 407.20326 662.90939 408.42744 662.23037 409.65675 661.56497 410.49043 660.9132 410.9284 660.26199 411.3684 659.623 411.41529 658.9962 411.0691ZM658.46737 412.0265C659.4695 412.58 660.4537 412.60636 661.42007 412.10554 662.3857 411.606 663.2849 410.60243 664.1176 409.09483 664.94827 407.59107 665.31826 406.29685 665.2276 405.2122 665.1363 404.12886 664.5896 403.3104 663.5875 402.75688 662.5867 402.20408 661.60348 402.17747 660.6378 402.677 659.67147 403.1778 658.77297 404.18009 657.9423 405.68388 657.1096 407.19148 656.7389 408.48695 656.83029 409.5703 656.92086 410.65498 657.46658 411.4737 658.46737 412.0265ZM674.7384 417.7352 673.51986 413.47605 677.7665 412.25309 677.454 411.13584 673.1895 412.36393 671.9603 408.1014 670.854 408.43495 672.07229 412.67646 667.8259 413.91703 668.1327 415.0311 672.39627 413.80006 673.6263 418.06556 674.7384 417.7352ZM683.3954 415.25233 685.36959 416.34275 681.6043 423.1595 679.69387 421.54197 679.0857 422.64299 680.9847 424.25416 682.19296 424.92155 686.56637 417.00379 688.5405 418.09425 689.1021 417.07749 683.95706 414.23554 683.3954 415.25233ZM689.63327 427.99168C689.01156 427.6483 688.7129 427.0835 688.7373 426.29728 688.7623 425.51307 689.1143 424.50633 689.79336 423.277 690.46957 422.0528 691.13327 421.2207 691.7844 420.7807 692.43698 420.34144 693.07406 420.2935 693.6957 420.63688 694.32247 420.98307 694.623 421.54893 694.5973 422.3344 694.5729 423.1206 694.2226 424.12583 693.5464 425.35 692.8674 426.5793 692.20199 427.413 691.5502 427.85099 690.899 428.291 690.26 428.33787 689.63327 427.99168ZM689.1044 428.94908C690.10647 429.50257 691.0907 429.52894 692.05709 429.0281 693.0227 428.52857 693.9219 427.525 694.75466 426.0174 695.58529 424.51365 695.95529 423.21943 695.8646 422.13478 695.7733 421.05143 695.2266 420.23298 694.22457 419.67945 693.2237 419.12666 692.2405 419.10005 691.27487 419.59959 690.3085 420.10038 689.41 421.10267 688.57937 422.60646 687.74667 424.11405 687.3759 425.40953 687.4672 426.4929 687.55789 427.57756 688.1036 428.39628 689.1044 428.94908ZM692.8056 433.40803 696.8267 435.6291 697.0259 435.26856 698.0106 428.12077 697.1273 427.63288 696.20327 434.3541 693.19949 432.69496 692.8056 433.40803ZM708.825 432.70469 709.1222 432.16664 704.05947 429.37019C704.5268 428.6387 705.07437 428.1873 705.7021 428.0159 706.3299 427.84455 707.00888 427.9605 707.7391 428.36384 708.16159 428.59724 708.5428 428.87528 708.8827 429.19795 709.2226 429.52064 709.531 429.89427 709.808 430.3188L710.38339 429.27714C710.08 428.89134 709.7452 428.5398 709.37899 428.22257 709.01278 427.90534 708.61648 427.62895 708.19009 427.39344 707.12039 426.80256 706.1017 426.64558 705.13406 426.92247 704.1657 427.2006 703.38827 427.87074 702.8016 428.9328 702.1959 430.02937 702.01156 431.0629 702.2485 432.03346 702.48477 433.00529 703.1058 433.76899 704.1117 434.32463 705.01296 434.82243 705.8863 434.9258 706.7318 434.6348 707.57656 434.34504 708.2743 433.70167 708.825 432.70469ZM707.5452 432.42015C707.20547 433.01716 706.77188 433.40406 706.2443 433.58085 705.7162 433.7589 705.1808 433.69813 704.63827 433.39845 704.02426 433.0593 703.62869 432.61424 703.45156 432.06324 703.2744 431.51225 703.3319 430.9059 703.6241 430.24427L707.5452 432.42015ZM713.3842 437.89448C713.2209 437.89756 713.0573 437.8755 712.89346 437.8283 712.7289 437.7824 712.55917 437.71116 712.3843 437.61454 711.76138 437.27046 711.395 436.80406 711.28536 436.21537 711.1757 435.62666 711.3303 434.9532 711.74917 434.19493L713.69949 430.664 712.5927 430.05268 708.89089 436.75453 709.9976 437.36585 710.573 436.3242C710.5804 436.85975 710.7149 437.32804 710.9765 437.7291 711.2387 438.13215 711.6353 438.48036 712.1664 438.77369 712.2417 438.81529 712.3281 438.85636 712.42568 438.8969 712.5225 438.93873 712.6321 438.9801 712.75448 439.02104L713.3842 437.89448ZM720.1887 438.72413C719.74807 439.52198 719.24209 440.04887 718.6709 440.30479 718.1003 440.5627 717.5175 440.52738 716.9226 440.1988 716.3329 439.87306 715.99459 439.39964 715.9078 438.7786 715.8203 438.1588 715.9969 437.45 716.4376 436.65217 716.87619 435.85816 717.3814 435.33256 717.9533 435.07536 718.5252 434.8181 719.1061 434.8524 719.6958 435.17817 720.2907 435.50675 720.63088 435.9812 720.7164 436.60154 720.80319 437.2226 720.6273 437.9301 720.1887 438.72413ZM722.725 436.7339C723.3546 435.59394 723.56979 434.6057 723.3704 433.7692 723.17239 432.9334 722.55056 432.22679 721.50509 431.6493 721.1183 431.43565 720.7373 431.2627 720.3622 431.13047 719.98709 430.99824 719.6049 430.90293 719.21566 430.84455L718.62448 431.91493C719.044 431.91844 719.4343 431.96577 719.7955 432.05696 720.15737 432.14686 720.50167 432.28208 720.8284 432.4626 721.55099 432.86167 721.98757 433.34858 722.13827 433.92329 722.289 434.498 722.1539 435.1664 721.7329 435.9285L721.43148 436.4742C721.42288 435.95298 721.295 435.4967 721.04806 435.10539 720.801 434.71406 720.4299 434.3816 719.9346 434.108 719.1138 433.65464 718.2791 433.60179 717.43069 433.94947 716.5815 434.29844 715.87136 434.98994 715.3002 436.02394 714.72769 437.0605 714.5201 438.0304 714.67758 438.93373 714.8343 439.83833 715.3231 440.5173 716.1439 440.9707 716.6392 441.24427 717.1182 441.3814 717.581 441.38215 718.04379 441.38285 718.4977 441.24873 718.9428 440.97978L718.38119 441.99656 719.4822 442.6047 722.725 436.7339ZM722.474 447.1711 723.4908 447.73274 725.9425 435.9421 724.9257 435.3805 722.474 447.1711ZM730.84426 448.54576 731.41329 447.51557C731.0066 447.51588 730.6233 447.47239 730.26327 447.38517 729.90328 447.29795 729.5637 447.1662 729.24459 446.98994 728.5297 446.59507 728.09957 446.06178 727.95419 445.38999 727.8093 444.7202 727.9629 443.9762 728.41488 443.15794 728.8668 442.3397 729.4152 441.8129 730.05996 441.5776 730.7053 441.3443 731.3854 441.42509 732.1003 441.81993 732.4194 441.99623 732.71176 442.21348 732.97726 442.47178 733.24276 442.73005 733.48367 443.03138 733.69998 443.37577L734.26266 442.35707C734.03396 442.04417 733.77468 441.76103 733.4848 441.5076 733.1969 441.25364 732.86727 441.02406 732.4958 440.81889 731.486 440.26115 730.5085 440.1352 729.5632 440.44105 728.61917 440.74763 727.8496 441.4396 727.25448 442.517 726.6509 443.6097 726.4764 444.63453 726.73086 445.59144 726.9859 446.55033 727.63619 447.3185 728.68167 447.896 729.0199 448.08287 729.36996 448.23039 729.7317 448.33857 730.0927 448.448 730.46359 448.51707 730.84426 448.54576ZM738.5455 451.4551C738.5476 452.1027 738.6753 452.64973 738.9285 453.09614 739.18179 453.54255 739.5675 453.90888 740.08578 454.19517 740.78408 454.58085 741.45779 454.63395 742.10696 454.35447 742.75546 454.07624 743.3286 453.4865 743.8264 452.58528L746.0612 448.53926 744.95449 447.92793 742.73977 451.93757C742.3851 452.57966 742.0078 452.9927 741.608 453.17668 741.2087 453.36265 740.77609 453.32695 740.3102 453.06959 739.73959 452.7544 739.393 452.31559 739.2705 451.7531 739.1486 451.19264 739.2685 450.58497 739.6302 449.9301L741.7223 446.1426 740.6155 445.53129 738.40078 449.5409C738.044 450.18684 737.6667 450.6015 737.2688 450.7849 736.8709 450.96833 736.4346 450.92887 735.9597 450.66658 735.3967 450.35563 735.0544 449.91828 734.9326 449.35456 734.8121 448.7915 734.93167 448.18449 735.29129 447.53346L737.3833 443.74595 736.27658 443.1346 732.5747 449.83647 733.68148 450.44779 734.25686 449.40614C734.2813 449.9561 734.4151 450.42567 734.65829 450.81489 734.9014 451.2041 735.2643 451.53199 735.7468 451.7985 736.23446 452.06785 736.7171 452.17283 737.1947 452.11344 737.67166 452.05534 738.1219 451.83589 738.5455 451.4551ZM745.2782 459.76719 746.295 460.3288 748.7467 448.53819 747.7299 447.97657 745.2782 459.76719ZM753.0642 460.89659 753.6396 459.85493C753.2413 459.84315 752.85238 459.78413 752.4729 459.67784 752.09408 459.5735 751.7246 459.4219 751.3646 459.22309 750.81826 458.9213 750.45468 458.61134 750.27389 458.2932 750.0931 457.9751 750.09536 457.64817 750.2808 457.31245 750.4218 457.05714 750.6302 456.91069 750.9059 456.87303 751.1816 456.83537 751.65127 456.91404 752.31497 457.109L752.73867 457.23313C753.6123 457.49745 754.29806 457.568 754.7959 457.44483 755.29379 457.32164 755.6936 456.98689 755.99539 456.44053 756.3395 455.81758 756.3656 455.18809 756.07388 454.5521 755.7813 453.9174 755.2043 453.36207 754.3426 452.8861 753.9839 452.688 753.59048 452.51649 753.16238 452.37165 752.7342 452.2268 752.2666 452.10514 751.7596 452.00666L751.13137 453.14405C751.6556 453.15708 752.1442 453.21955 752.59719 453.33149 753.04946 453.44468 753.4696 453.60847 753.85769 453.8228 754.376 454.10908 754.7252 454.4178 754.9055 454.74894 755.0871 455.0808 755.0886 455.4082 754.9103 455.73118 754.74526 456.02989 754.5178 456.20335 754.228 456.2515 753.93948 456.30036 753.41287 456.2102 752.6481 455.98106L752.2154 455.85954C751.4548 455.62599 750.8404 455.574 750.37228 455.7036 749.90548 455.83396 749.5289 456.15824 749.2426 456.6765 748.8943 457.30714 748.84909 457.91688 749.1069 458.5058 749.36398 459.09596 749.90359 459.6181 750.72567 460.07218 751.1316 460.29643 751.5305 460.4776 751.92239 460.61573 752.31478 460.75587 752.6954 460.84947 753.0642 460.89659ZM755.79177 465.5744 756.80856 466.13603 759.26028 454.3454 758.24349 453.78379 755.79177 465.5744ZM758.0115 466.8005 759.2197 467.4679 761.3054 463.69187 763.2294 469.68263 764.7861 470.5425 762.6518 463.92826 770.0371 461.7825 768.44589 460.9036 761.7782 462.83595 764.1548 458.53337 762.94656 457.86598 758.0115 466.8005Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7328 389.71684 624.8683 390.34403 625.86129 387.2614 627.75967 391.94108 629.10006 392.68147 627.3644 388.42655 631.90957 385.48674 630.5634 384.7432 626.8457 387.2029 626.30307 385.89607 627.2661 382.9219 626.1287 382.29365 623.7328 389.71684ZM633.47317 393.61259 641.1439 397.84956 641.69918 396.84428 634.02847 392.6073 633.47317 393.61259ZM634.82168 391.17118 642.49246 395.40818 643.054 394.39143 635.3833 390.15443 634.82168 391.17118ZM650.2159 401.88594C650.86257 402.0815 651.45626 402.0729 651.99697 401.8601 652.53829 401.6493 652.9675 401.25666 653.28488 400.68223 653.77139 399.8014 653.84506 398.95164 653.5059 398.13288 653.16616 397.31544 652.4377 396.5982 651.32077 395.98124 650.9467 395.77467 650.5408 395.59873 650.10287 395.45347 649.6649 395.30824 649.19387 395.19294 648.6895 395.10765L648.0454 396.27375C648.48776 396.26319 648.93557 396.3181 649.3888 396.43855 649.8434 396.55967 650.28829 396.74046 650.7236 396.9809 651.4806 397.39903 651.9751 397.86708 652.2071 398.38508 652.4391 398.90309 652.3975 399.4474 652.08236 400.018 651.79116 400.5452 651.3793 400.855 650.84677 400.9474 650.31356 401.04106 649.71829 400.9063 649.0608 400.54319L648.01919 399.9678 647.4702 400.9616 648.55978 401.56343C649.1534 401.8913 649.54226 402.26103 649.7264 402.6726 649.9105 403.08424 649.8792 403.5134 649.63247 403.9602 649.3793 404.4185 649.0223 404.68028 648.5614 404.74555 648.1011 404.81285 647.5677 404.67903 646.96139 404.3441 646.62948 404.16078 646.294 403.928 645.9551 403.6458 645.6154 403.36494 645.26 403.02366 644.88876 402.62199L644.2944 403.69813C644.6834 404.07963 645.0607 404.41297 645.4263 404.6982 645.7919 404.98344 646.1521 405.22407 646.50698 405.42008 647.4248 405.92707 648.2658 406.1192 649.02999 405.9965 649.7947 405.8758 650.3731 405.46055 650.76516 404.7508 651.0387 404.2555 651.1279 403.75917 651.03286 403.26179 650.9377 402.7644 650.6654 402.3058 650.2159 401.88594ZM656.171 400.87199 657.4348 401.57005 658.2746 400.04966 657.0108 399.3516 656.171 400.87199ZM658.9962 411.0691C658.3745 410.7257 658.0759 410.16093 658.10037 409.3747 658.1253 408.59049 658.4773 407.58375 659.1563 406.35444 659.8325 405.13023 660.4962 404.29814 661.14749 403.85813 661.7999 403.41886 662.437 403.3709 663.05868 403.7143 663.6855 404.0605 663.986 404.62635 663.9603 405.41184 663.93588 406.19804 663.5856 407.20326 662.90939 408.42744 662.23037 409.65675 661.56497 410.49043 660.9132 410.9284 660.26199 411.3684 659.623 411.41529 658.9962 411.0691ZM658.46737 412.0265C659.4695 412.58 660.4537 412.60636 661.42007 412.10554 662.3857 411.606 663.2849 410.60243 664.1176 409.09483 664.94827 407.59107 665.31826 406.29685 665.2276 405.2122 665.1363 404.12886 664.5896 403.3104 663.5875 402.75688 662.5867 402.20408 661.60348 402.17747 660.6378 402.677 659.67147 403.1778 658.77297 404.18009 657.9423 405.68388 657.1096 407.19148 656.7389 408.48695 656.83029 409.5703 656.92086 410.65498 657.46658 411.4737 658.46737 412.0265ZM674.7384 417.7352 673.51986 413.47605 677.7665 412.25309 677.454 411.13584 673.1895 412.36393 671.9603 408.1014 670.854 408.43495 672.07229 412.67646 667.8259 413.91703 668.1327 415.0311 672.39627 413.80006 673.6263 418.06556 674.7384 417.7352ZM683.3954 415.25233 685.36959 416.34275 681.6043 423.1595 679.69387 421.54197 679.0857 422.64299 680.9847 424.25416 682.19296 424.92155 686.56637 417.00379 688.5405 418.09425 689.1021 417.07749 683.95706 414.23554 683.3954 415.25233ZM689.63327 427.99168C689.01156 427.6483 688.7129 427.0835 688.7373 426.29728 688.7623 425.51307 689.1143 424.50633 689.79336 423.277 690.46957 422.0528 691.13327 421.2207 691.7844 420.7807 692.43698 420.34144 693.07406 420.2935 693.6957 420.63688 694.32247 420.98307 694.623 421.54893 694.5973 422.3344 694.5729 423.1206 694.2226 424.12583 693.5464 425.35 692.8674 426.5793 692.20199 427.413 691.5502 427.85099 690.899 428.291 690.26 428.33787 689.63327 427.99168ZM689.1044 428.94908C690.10647 429.50257 691.0907 429.52894 692.05709 429.0281 693.0227 428.52857 693.9219 427.525 694.75466 426.0174 695.58529 424.51365 695.95529 423.21943 695.8646 422.13478 695.7733 421.05143 695.2266 420.23298 694.22457 419.67945 693.2237 419.12666 692.2405 419.10005 691.27487 419.59959 690.3085 420.10038 689.41 421.10267 688.57937 422.60646 687.74667 424.11405 687.3759 425.40953 687.4672 426.4929 687.55789 427.57756 688.1036 428.39628 689.1044 428.94908ZM692.8056 433.40803 696.8267 435.6291 697.0259 435.26856 698.0106 428.12077 697.1273 427.63288 696.20327 434.3541 693.19949 432.69496 692.8056 433.40803ZM708.825 432.70469 709.1222 432.16664 704.05947 429.37019C704.5268 428.6387 705.07437 428.1873 705.7021 428.0159 706.3299 427.84455 707.00888 427.9605 707.7391 428.36384 708.16159 428.59724 708.5428 428.87528 708.8827 429.19795 709.2226 429.52064 709.531 429.89427 709.808 430.3188L710.38339 429.27714C710.08 428.89134 709.7452 428.5398 709.37899 428.22257 709.01278 427.90534 708.61648 427.62895 708.19009 427.39344 707.12039 426.80256 706.1017 426.64558 705.13406 426.92247 704.1657 427.2006 703.38827 427.87074 702.8016 428.9328 702.1959 430.02937 702.01156 431.0629 702.2485 432.03346 702.48477 433.00529 703.1058 433.76899 704.1117 434.32463 705.01296 434.82243 705.8863 434.9258 706.7318 434.6348 707.57656 434.34504 708.2743 433.70167 708.825 432.70469ZM707.5452 432.42015C707.20547 433.01716 706.77188 433.40406 706.2443 433.58085 705.7162 433.7589 705.1808 433.69813 704.63827 433.39845 704.02426 433.0593 703.62869 432.61424 703.45156 432.06324 703.2744 431.51225 703.3319 430.9059 703.6241 430.24427L707.5452 432.42015ZM713.3842 437.89448C713.2209 437.89756 713.0573 437.8755 712.89346 437.8283 712.7289 437.7824 712.55917 437.71116 712.3843 437.61454 711.76138 437.27046 711.395 436.80406 711.28536 436.21537 711.1757 435.62666 711.3303 434.9532 711.74917 434.19493L713.69949 430.664 712.5927 430.05268 708.89089 436.75453 709.9976 437.36585 710.573 436.3242C710.5804 436.85975 710.7149 437.32804 710.9765 437.7291 711.2387 438.13215 711.6353 438.48036 712.1664 438.77369 712.2417 438.81529 712.3281 438.85636 712.42568 438.8969 712.5225 438.93873 712.6321 438.9801 712.75448 439.02104L713.3842 437.89448ZM720.1887 438.72413C719.74807 439.52198 719.24209 440.04887 718.6709 440.30479 718.1003 440.5627 717.5175 440.52738 716.9226 440.1988 716.3329 439.87306 715.99459 439.39964 715.9078 438.7786 715.8203 438.1588 715.9969 437.45 716.4376 436.65217 716.87619 435.85816 717.3814 435.33256 717.9533 435.07536 718.5252 434.8181 719.1061 434.8524 719.6958 435.17817 720.2907 435.50675 720.63088 435.9812 720.7164 436.60154 720.80319 437.2226 720.6273 437.9301 720.1887 438.72413ZM722.725 436.7339C723.3546 435.59394 723.56979 434.6057 723.3704 433.7692 723.17239 432.9334 722.55056 432.22679 721.50509 431.6493 721.1183 431.43565 720.7373 431.2627 720.3622 431.13047 719.98709 430.99824 719.6049 430.90293 719.21566 430.84455L718.62448 431.91493C719.044 431.91844 719.4343 431.96577 719.7955 432.05696 720.15737 432.14686 720.50167 432.28208 720.8284 432.4626 721.55099 432.86167 721.98757 433.34858 722.13827 433.92329 722.289 434.498 722.1539 435.1664 721.7329 435.9285L721.43148 436.4742C721.42288 435.95298 721.295 435.4967 721.04806 435.10539 720.801 434.71406 720.4299 434.3816 719.9346 434.108 719.1138 433.65464 718.2791 433.60179 717.43069 433.94947 716.5815 434.29844 715.87136 434.98994 715.3002 436.02394 714.72769 437.0605 714.5201 438.0304 714.67758 438.93373 714.8343 439.83833 715.3231 440.5173 716.1439 440.9707 716.6392 441.24427 717.1182 441.3814 717.581 441.38215 718.04379 441.38285 718.4977 441.24873 718.9428 440.97978L718.38119 441.99656 719.4822 442.6047 722.725 436.7339ZM722.474 447.1711 723.4908 447.73274 725.9425 435.9421 724.9257 435.3805 722.474 447.1711ZM730.84426 448.54576 731.41329 447.51557C731.0066 447.51588 730.6233 447.47239 730.26327 447.38517 729.90328 447.29795 729.5637 447.1662 729.24459 446.98994 728.5297 446.59507 728.09957 446.06178 727.95419 445.38999 727.8093 444.7202 727.9629 443.9762 728.41488 443.15794 728.8668 442.3397 729.4152 441.8129 730.05996 441.5776 730.7053 441.3443 731.3854 441.42509 732.1003 441.81993 732.4194 441.99623 732.71176 442.21348 732.97726 442.47178 733.24276 442.73005 733.48367 443.03138 733.69998 443.37577L734.26266 442.35707C734.03396 442.04417 733.77468 441.76103 733.4848 441.5076 733.1969 441.25364 732.86727 441.02406 732.4958 440.81889 731.486 440.26115 730.5085 440.1352 729.5632 440.44105 728.61917 440.74763 727.8496 441.4396 727.25448 442.517 726.6509 443.6097 726.4764 444.63453 726.73086 445.59144 726.9859 446.55033 727.63619 447.3185 728.68167 447.896 729.0199 448.08287 729.36996 448.23039 729.7317 448.33857 730.0927 448.448 730.46359 448.51707 730.84426 448.54576ZM738.5455 451.4551C738.5476 452.1027 738.6753 452.64973 738.9285 453.09614 739.18179 453.54255 739.5675 453.90888 740.08578 454.19517 740.78408 454.58085 741.45779 454.63395 742.10696 454.35447 742.75546 454.07624 743.3286 453.4865 743.8264 452.58528L746.0612 448.53926 744.95449 447.92793 742.73977 451.93757C742.3851 452.57966 742.0078 452.9927 741.608 453.17668 741.2087 453.36265 740.77609 453.32695 740.3102 453.06959 739.73959 452.7544 739.393 452.31559 739.2705 451.7531 739.1486 451.19264 739.2685 450.58497 739.6302 449.9301L741.7223 446.1426 740.6155 445.53129 738.40078 449.5409C738.044 450.18684 737.6667 450.6015 737.2688 450.7849 736.8709 450.96833 736.4346 450.92887 735.9597 450.66658 735.3967 450.35563 735.0544 449.91828 734.9326 449.35456 734.8121 448.7915 734.93167 448.18449 735.29129 447.53346L737.3833 443.74595 736.27658 443.1346 732.5747 449.83647 733.68148 450.44779 734.25686 449.40614C734.2813 449.9561 734.4151 450.42567 734.65829 450.81489 734.9014 451.2041 735.2643 451.53199 735.7468 451.7985 736.23446 452.06785 736.7171 452.17283 737.1947 452.11344 737.67166 452.05534 738.1219 451.83589 738.5455 451.4551ZM745.2782 459.76719 746.295 460.3288 748.7467 448.53819 747.7299 447.97657 745.2782 459.76719ZM753.0642 460.89659 753.6396 459.85493C753.2413 459.84315 752.85238 459.78413 752.4729 459.67784 752.09408 459.5735 751.7246 459.4219 751.3646 459.22309 750.81826 458.9213 750.45468 458.61134 750.27389 458.2932 750.0931 457.9751 750.09536 457.64817 750.2808 457.31245 750.4218 457.05714 750.6302 456.91069 750.9059 456.87303 751.1816 456.83537 751.65127 456.91404 752.31497 457.109L752.73867 457.23313C753.6123 457.49745 754.29806 457.568 754.7959 457.44483 755.29379 457.32164 755.6936 456.98689 755.99539 456.44053 756.3395 455.81758 756.3656 455.18809 756.07388 454.5521 755.7813 453.9174 755.2043 453.36207 754.3426 452.8861 753.9839 452.688 753.59048 452.51649 753.16238 452.37165 752.7342 452.2268 752.2666 452.10514 751.7596 452.00666L751.13137 453.14405C751.6556 453.15708 752.1442 453.21955 752.59719 453.33149 753.04946 453.44468 753.4696 453.60847 753.85769 453.8228 754.376 454.10908 754.7252 454.4178 754.9055 454.74894 755.0871 455.0808 755.0886 455.4082 754.9103 455.73118 754.74526 456.02989 754.5178 456.20335 754.228 456.2515 753.93948 456.30036 753.41287 456.2102 752.6481 455.98106L752.2154 455.85954C751.4548 455.62599 750.8404 455.574 750.37228 455.7036 749.90548 455.83396 749.5289 456.15824 749.2426 456.6765 748.8943 457.30714 748.84909 457.91688 749.1069 458.5058 749.36398 459.09596 749.90359 459.6181 750.72567 460.07218 751.1316 460.29643 751.5305 460.4776 751.92239 460.61573 752.31478 460.75587 752.6954 460.84947 753.0642 460.89659ZM755.79177 465.5744 756.80856 466.13603 759.26028 454.3454 758.24349 453.78379 755.79177 465.5744ZM758.0115 466.8005 759.2197 467.4679 761.3054 463.69187 763.2294 469.68263 764.7861 470.5425 762.6518 463.92826 770.0371 461.7825 768.44589 460.9036 761.7782 462.83595 764.1548 458.53337 762.94656 457.86598 758.0115 466.8005Z" fill="#4682b4"/> | |
| </g> | |
| <g clip-path="url(#clip_36)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7273 444.09736 624.8628 444.72456 625.8558 441.64195 627.75418 446.3216 629.09457 447.06199 627.3588 442.80708 631.90408 439.86726 630.5579 439.12373 626.8402 441.58345 626.29757 440.27659 627.2606 437.30244 626.1232 436.67417 623.7273 444.09736ZM633.46768 447.9931 641.1384 452.23008 641.69369 451.2248 634.02297 446.98783 633.46768 447.9931ZM634.81619 445.5517 642.48696 449.7887 643.0485 448.77195 635.3778 444.53495 634.81619 445.5517ZM650.2104 456.26646C650.85708 456.46205 651.45077 456.45344 651.99148 456.24064 652.5328 456.02983 652.96206 455.63719 653.27938 455.06275 653.76589 454.18193 653.83956 453.33216 653.5004 452.5134 653.1606 451.69596 652.4322 450.97874 651.31527 450.36177 650.9412 450.15519 650.5352 449.97926 650.09738 449.83399 649.6594 449.68876 649.18838 449.57347 648.684 449.48817L648.0399 450.65428C648.48226 450.6437 648.93008 450.69865 649.3833 450.81907 649.8379 450.9402 650.2828 451.12098 650.7181 451.36143 651.4751 451.77955 651.9696 452.2476 652.2016 452.7656 652.4336 453.2836 652.392 453.8279 652.07687 454.39854 651.78567 454.92573 651.3738 455.23554 650.84127 455.3279 650.30807 455.42158 649.7127 455.28684 649.0553 454.9237L648.0137 454.34834 647.4647 455.34214 648.55429 455.94395C649.1478 456.27183 649.53677 456.64155 649.7209 457.05314 649.905 457.46476 649.8737 457.89393 649.62698 458.34074 649.3738 458.799 649.0168 459.0608 648.5559 459.1261 648.0956 459.19337 647.5622 459.05955 646.9559 458.7246 646.62399 458.5413 646.2885 458.30854 645.9496 458.02635 645.6099 457.74546 645.2545 457.40419 644.88327 457.0025L644.2889 458.07865C644.6779 458.46015 645.0552 458.7935 645.4208 459.07875 645.7864 459.36396 646.1466 459.60459 646.50149 459.8006 647.4193 460.3076 648.2603 460.49974 649.0245 460.377 649.7892 460.25633 650.3676 459.84107 650.75967 459.13133 651.0332 458.63603 651.12246 458.13969 651.0273 457.6423 650.9322 457.14494 650.65988 456.6863 650.2104 456.26646ZM656.1655 455.2525 657.4293 455.95057 658.2691 454.43019 657.0053 453.73216 656.1655 455.2525ZM658.9907 465.44963C658.369 465.10624 658.0704 464.54145 658.09487 463.75526 658.1198 462.971 658.4718 461.96427 659.1508 460.73497 659.827 459.51075 660.4907 458.67866 661.14199 458.23866 661.79446 457.79939 662.4315 457.75144 663.05319 458.09483 663.67996 458.441 663.9805 459.00688 663.95486 459.79237 663.93038 460.57856 663.5801 461.58378 662.9039 462.80796 662.22488 464.03727 661.55947 464.87095 660.90768 465.30894 660.2565 465.74894 659.6175 465.7958 658.9907 465.44963ZM658.46188 466.407C659.4639 466.96055 660.4482 466.98689 661.41458 466.48606 662.3802 465.9865 663.2794 464.98295 664.1121 463.47535 664.94277 461.9716 665.31277 460.67738 665.2221 459.59275 665.1308 458.50938 664.5841 457.69093 663.58206 457.13743 662.5812 456.5846 661.59799 456.55799 660.6323 457.05754 659.66598 457.55833 658.76748 458.56065 657.9368 460.0644 657.1041 461.572 656.7334 462.86747 656.8247 463.95085 656.91537 465.0355 657.46109 465.85423 658.46188 466.407ZM674.7329 472.11573 673.51437 467.85658 677.761 466.6336 677.4485 465.51637 673.184 466.74446 671.95486 462.48194 670.8485 462.81547 672.0668 467.05699 667.82046 468.29759 668.1272 469.41166 672.39077 468.18058 673.6208 472.44609 674.7329 472.11573ZM683.3899 469.63285 685.3641 470.7233 681.5988 477.54 679.68838 475.9225 679.0802 477.0235 680.9792 478.6347 682.1874 479.30207 686.56088 471.3843 688.53506 472.47477 689.0966 471.458 683.95156 468.61607 683.3899 469.63285ZM689.6277 482.3722C689.00607 482.0288 688.7074 481.46403 688.7318 480.67784 688.75686 479.8936 689.1088 478.88685 689.78787 477.65754 690.46408 476.43333 691.12777 475.60124 691.77896 475.16123 692.43148 474.72196 693.06857 474.674 693.6902 475.0174 694.31698 475.3636 694.6175 475.92945 694.5918 476.71495 694.5674 477.50114 694.2171 478.50636 693.5409 479.73054 692.8619 480.95985 692.1965 481.79353 691.5447 482.2315 690.8935 482.6715 690.2545 482.71839 689.6277 482.3722ZM689.0989 483.3296C690.10098 483.88313 691.0852 483.90946 692.0516 483.40864 693.0172 482.9091 693.9164 481.90553 694.74917 480.39793 695.5798 478.89418 695.94979 477.59996 695.85916 476.51533 695.7678 475.43196 695.2211 474.6135 694.219 474.06 693.2182 473.50718 692.235 473.48057 691.26937 473.9801 690.303 474.4809 689.4045 475.48323 688.57388 476.98698 687.74118 478.49458 687.3704 479.79005 687.46176 480.8734 687.55239 481.95808 688.0981 482.7768 689.0989 483.3296ZM696.6366 485.62187C696.2345 485.39976 695.97769 485.11735 695.866 484.77464 695.7554 484.43244 695.8039 484.07325 696.0117 483.69706 696.22 483.31996 696.4984 483.08717 696.84707 482.99867 697.19656 482.91065 697.5723 482.9777 697.9744 483.1998 698.3765 483.4219 698.6336 483.705 698.7456 484.04908 698.858 484.39457 698.8108 484.7545 698.60397 485.1289 698.3962 485.5051 698.11758 485.7372 697.768 485.82524 697.41946 485.91374 697.0423 485.84593 696.6366 485.62187ZM695.5924 485.5139C695.18026 485.40287 694.80416 485.41554 694.4641 485.5519 694.12448 485.68968 693.8559 485.93727 693.65847 486.2947 693.38259 486.7942 693.3422 487.28739 693.5375 487.77424 693.7336 488.2616 694.1413 488.6763 694.7605 489.01835 695.38339 489.36238 695.95236 489.48716 696.4675 489.39268 696.98269 489.29823 697.3782 489.00123 697.6541 488.5017 697.85159 488.1443 697.91769 487.78489 697.85256 487.42356 697.78787 487.06358 697.6001 486.73948 697.2893 486.4512 697.7491 486.58155 698.169 486.5709 698.54898 486.41926 698.9293 486.269 699.2296 485.9946 699.44979 485.59608 699.78488 484.98933 699.85708 484.4216 699.66629 483.89289 699.47506 483.36509 699.0345 482.91065 698.3446 482.5296 697.65567 482.14909 697.03646 482.01814 696.48696 482.13676 695.9378 482.25679 695.49569 482.62019 695.1606 483.2269 694.9404 483.62547 694.86849 484.02595 694.9447 484.42845 695.02139 484.83229 695.23727 485.1941 695.5924 485.5139ZM694.5446 486.67924C694.7233 486.35575 694.96377 486.1591 695.26589 486.08924 695.5689 486.01988 695.90316 486.08613 696.2686 486.288 696.6323 486.4889 696.8664 486.73655 696.9708 487.03099 697.0762 487.3259 697.0395 487.6351 696.8608 487.95857 696.68167 488.28294 696.4392 488.47908 696.1335 488.54695 695.8287 488.6153 695.4944 488.54905 695.1307 488.34815 694.76528 488.14628 694.5312 487.89863 694.4285 487.6052 694.3268 487.31227 694.3655 487.0036 694.5446 486.67924ZM708.81948 487.0852 709.1167 486.54716 704.0539 483.7507C704.52127 483.01924 705.06887 482.5678 705.6966 482.39643 706.3244 482.22508 707.00338 482.34104 707.7336 482.74436 708.15609 482.97776 708.5373 483.2558 708.8772 483.5785 709.2171 483.90116 709.5255 484.27479 709.8025 484.69935L710.37789 483.65766C710.07449 483.27186 709.7397 482.92033 709.3735 482.6031 709.00729 482.28587 708.61099 482.0095 708.1846 481.77397 707.11489 481.18309 706.0962 481.0261 705.12857 481.30299 704.1602 481.58113 703.38278 482.25126 702.7961 483.31333 702.1904 484.40989 702.00607 485.44343 702.243 486.41398 702.4792 487.3858 703.1003 488.1495 704.1062 488.70515 705.00747 489.20295 705.8808 489.30635 706.72628 489.01533 707.57107 488.72557 708.2688 488.08219 708.81948 487.0852ZM707.53976 486.80067C707.19998 487.39768 706.76638 487.78459 706.23886 487.96138 705.7107 488.13945 705.1753 488.07865 704.63278 487.77897 704.01876 487.43983 703.62319 486.99476 703.44607 486.44377 703.2689 485.89277 703.3264 485.28645 703.6186 484.6248L707.53976 486.80067ZM713.3787 492.275C713.2154 492.27809 713.0518 492.25605 712.88796 492.20884 712.7234 492.16294 712.55368 492.09169 712.3788 491.99507 711.75588 491.65098 711.3895 491.18458 711.27987 490.5959 711.1702 490.00718 711.32479 489.3337 711.74368 488.57545L713.694 485.04454 712.5872 484.4332 708.8854 491.13505 709.9921 491.74638 710.5675 490.7047C710.5749 491.24028 710.7094 491.70857 710.971 492.10963 711.2332 492.5127 711.6298 492.86088 712.1609 493.1542 712.2362 493.1958 712.32266 493.23689 712.42019 493.27745 712.517 493.31929 712.6266 493.36064 712.74899 493.40156L713.3787 492.275ZM720.1832 493.10466C719.74258 493.9025 719.2366 494.42939 718.6654 494.68534 718.0947 494.94325 717.512 494.9079 716.9171 494.5793 716.3274 494.25358 715.9891 493.78016 715.9023 493.15913 715.8148 492.53935 715.9914 491.83055 716.43209 491.03269 716.87069 490.23869 717.3759 489.71308 717.9478 489.45588 718.5197 489.19865 719.1006 489.2329 719.6903 489.5587 720.2852 489.88728 720.62539 490.36174 720.7109 490.98207 720.79769 491.60313 720.62179 492.31065 720.1832 493.10466ZM722.7195 491.1144C723.3491 489.97447 723.5643 488.98625 723.3649 488.14973 723.1669 487.31394 722.54507 486.6073 721.4996 486.02983 721.1128 485.81617 720.7318 485.64323 720.3567 485.511 719.98159 485.37879 719.5994 485.28346 719.21017 485.22508L718.6189 486.29545C719.0385 486.29896 719.42886 486.34629 719.79 486.43748 720.1518 486.52738 720.49618 486.6626 720.82296 486.8431 721.5455 487.2422 721.98208 487.7291 722.13278 488.3038 722.28347 488.87855 722.1484 489.54695 721.7274 490.30903L721.42599 490.85475C721.4173 490.33354 721.2895 489.87724 721.04257 489.4859 720.79556 489.09458 720.4244 488.76213 719.9291 488.48854 719.1083 488.03517 718.2736 487.9823 717.4252 488.33 716.576 488.67897 715.86587 489.37046 715.2947 490.40446 714.72219 491.441 714.5146 492.41093 714.67208 493.31425 714.8288 494.21885 715.31759 494.89784 716.1384 495.35124 716.6337 495.6248 717.11276 495.76194 717.5755 495.76268 718.03829 495.76338 718.4922 495.62925 718.9373 495.3603L718.3757 496.37709 719.4767 496.98524 722.7195 491.1144ZM722.4685 501.55165 723.4852 502.11326 725.937 490.32264 724.9202 489.76103 722.4685 501.55165ZM730.83877 502.92628 731.4078 501.8961C731.0011 501.8964 730.6178 501.8529 730.25778 501.7657 729.89779 501.67848 729.5582 501.54673 729.2391 501.37046 728.52426 500.9756 728.09408 500.4423 727.94869 499.77055 727.80386 499.10075 727.9574 498.35673 728.40939 497.53846 728.8613 496.7202 729.4097 496.19343 730.05447 495.95814 730.6998 495.72483 731.3799 495.8056 732.0948 496.20045 732.4139 496.37675 732.70626 496.594 732.97177 496.8523 733.23727 497.11058 733.47817 497.4119 733.69448 497.7563L734.2571 496.7376C734.02847 496.42469 733.76919 496.14155 733.4793 495.88813 733.1914 495.63417 732.86178 495.40458 732.4903 495.1994 731.4805 494.64167 730.503 494.51573 729.5577 494.82157 728.61367 495.12815 727.8441 495.82014 727.24899 496.89753 726.6454 497.99024 726.4709 499.01506 726.72537 499.97196 726.98037 500.93086 727.6306 501.69905 728.67617 502.27653 729.0144 502.46339 729.36447 502.6109 729.7262 502.7191 730.0872 502.82853 730.45809 502.89759 730.83877 502.92628ZM738.54 505.83564C738.5421 506.48323 738.6698 507.03025 738.92306 507.47666 739.1763 507.92308 739.562 508.2894 740.08029 508.57569 740.77859 508.96138 741.4523 509.01448 742.10147 508.735 742.74996 508.45677 743.3231 507.86705 743.8209 506.9658L746.0557 502.9198 744.949 502.30848 742.73428 506.31809C742.3796 506.96018 742.0023 507.37324 741.6025 507.55723 741.2032 507.74317 740.77059 507.7075 740.3046 507.4501 739.734 507.13493 739.3875 506.6961 739.265 506.13365 739.14309 505.57316 739.263 504.96549 739.6247 504.31065L741.7168 500.52314 740.61 499.9118 738.39529 503.92143C738.03848 504.56736 737.66116 504.98204 737.2633 505.16545 736.8654 505.34886 736.4291 505.30943 735.9542 505.04713 735.39126 504.73616 735.0489 504.2988 734.9271 503.73509 734.8066 503.17204 734.92617 502.565 735.28579 501.91398L737.3778 498.12648 736.27108 497.51515 732.5692 504.21699 733.67599 504.8283 734.25137 503.78666C734.2758 504.3366 734.4096 504.80619 734.6528 505.1954 734.89596 505.58464 735.2588 505.9125 735.74136 506.17903 736.22897 506.44837 736.7116 506.55335 737.1892 506.494 737.66616 506.43586 738.1164 506.2164 738.54 505.83564ZM745.2727 514.1477 746.2895 514.70938 748.7412 502.9187 747.7244 502.3571 745.2727 514.1477ZM753.0587 515.2771 753.6341 514.2355C753.2357 514.2237 752.84689 514.1646 752.4674 514.05838 752.08859 513.95407 751.7191 513.8024 751.35916 513.6036 750.81277 513.3018 750.44918 512.9919 750.2684 512.67379 750.0875 512.35568 750.08987 512.0287 750.2753 511.69297 750.4163 511.43766 750.6247 511.2912 750.9004 511.25355 751.1761 511.2159 751.64578 511.29457 752.30947 511.48954L752.73318 511.61366C753.6068 511.87797 754.29257 511.94853 754.7904 511.82536 755.28829 511.70216 755.6881 511.3674 755.98989 510.82106 756.334 510.1981 756.3601 509.5686 756.06838 508.93263 755.7758 508.2979 755.1987 507.74259 754.3371 507.26664 753.9784 507.0685 753.58499 506.897 753.15689 506.75218 752.7287 506.60734 752.2611 506.48567 751.7541 506.38719L751.1258 507.52458C751.6501 507.5376 752.13876 507.60008 752.5917 507.712 753.04397 507.8252 753.4641 507.98899 753.8522 508.20335 754.3705 508.4896 754.7197 508.7983 754.9 509.1295 755.08157 509.46134 755.0831 509.78874 754.9048 510.1117 754.73977 510.41044 754.5123 510.58387 754.22256 510.63203 753.93399 510.68089 753.4073 510.59074 752.6426 510.36158L752.2099 510.24006C751.4493 510.0065 750.8349 509.95454 750.36679 510.08415 749.89999 510.21449 749.5234 510.53877 749.2371 511.05705 748.8888 511.68766 748.84359 512.2974 749.1014 512.8863 749.35848 513.4765 749.8981 513.9986 750.72018 514.4527 751.1261 514.67697 751.525 514.8581 751.9169 514.9963 752.30929 515.13638 752.6899 515.23 753.0587 515.2771ZM755.78628 519.95498 756.803 520.51657 759.25479 508.72593 758.238 508.1643 755.78628 519.95498ZM758.006 521.181 759.21426 521.8484 761.2999 518.0724 763.2239 524.0632 764.7806 524.92306 762.6463 518.3088 770.0316 516.163 768.44039 515.2841 761.7727 517.2165 764.1493 512.9139 762.94107 512.2465 758.006 521.181Z" fill="#9932cc"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M623.7273 444.09736 624.8628 444.72456 625.8558 441.64195 627.75418 446.3216 629.09457 447.06199 627.3588 442.80708 631.90408 439.86726 630.5579 439.12373 626.8402 441.58345 626.29757 440.27659 627.2606 437.30244 626.1232 436.67417 623.7273 444.09736ZM633.46768 447.9931 641.1384 452.23008 641.69369 451.2248 634.02297 446.98783 633.46768 447.9931ZM634.81619 445.5517 642.48696 449.7887 643.0485 448.77195 635.3778 444.53495 634.81619 445.5517ZM650.2104 456.26646C650.85708 456.46205 651.45077 456.45344 651.99148 456.24064 652.5328 456.02983 652.96206 455.63719 653.27938 455.06275 653.76589 454.18193 653.83956 453.33216 653.5004 452.5134 653.1606 451.69596 652.4322 450.97874 651.31527 450.36177 650.9412 450.15519 650.5352 449.97926 650.09738 449.83399 649.6594 449.68876 649.18838 449.57347 648.684 449.48817L648.0399 450.65428C648.48226 450.6437 648.93008 450.69865 649.3833 450.81907 649.8379 450.9402 650.2828 451.12098 650.7181 451.36143 651.4751 451.77955 651.9696 452.2476 652.2016 452.7656 652.4336 453.2836 652.392 453.8279 652.07687 454.39854 651.78567 454.92573 651.3738 455.23554 650.84127 455.3279 650.30807 455.42158 649.7127 455.28684 649.0553 454.9237L648.0137 454.34834 647.4647 455.34214 648.55429 455.94395C649.1478 456.27183 649.53677 456.64155 649.7209 457.05314 649.905 457.46476 649.8737 457.89393 649.62698 458.34074 649.3738 458.799 649.0168 459.0608 648.5559 459.1261 648.0956 459.19337 647.5622 459.05955 646.9559 458.7246 646.62399 458.5413 646.2885 458.30854 645.9496 458.02635 645.6099 457.74546 645.2545 457.40419 644.88327 457.0025L644.2889 458.07865C644.6779 458.46015 645.0552 458.7935 645.4208 459.07875 645.7864 459.36396 646.1466 459.60459 646.50149 459.8006 647.4193 460.3076 648.2603 460.49974 649.0245 460.377 649.7892 460.25633 650.3676 459.84107 650.75967 459.13133 651.0332 458.63603 651.12246 458.13969 651.0273 457.6423 650.9322 457.14494 650.65988 456.6863 650.2104 456.26646ZM656.1655 455.2525 657.4293 455.95057 658.2691 454.43019 657.0053 453.73216 656.1655 455.2525ZM658.9907 465.44963C658.369 465.10624 658.0704 464.54145 658.09487 463.75526 658.1198 462.971 658.4718 461.96427 659.1508 460.73497 659.827 459.51075 660.4907 458.67866 661.14199 458.23866 661.79446 457.79939 662.4315 457.75144 663.05319 458.09483 663.67996 458.441 663.9805 459.00688 663.95486 459.79237 663.93038 460.57856 663.5801 461.58378 662.9039 462.80796 662.22488 464.03727 661.55947 464.87095 660.90768 465.30894 660.2565 465.74894 659.6175 465.7958 658.9907 465.44963ZM658.46188 466.407C659.4639 466.96055 660.4482 466.98689 661.41458 466.48606 662.3802 465.9865 663.2794 464.98295 664.1121 463.47535 664.94277 461.9716 665.31277 460.67738 665.2221 459.59275 665.1308 458.50938 664.5841 457.69093 663.58206 457.13743 662.5812 456.5846 661.59799 456.55799 660.6323 457.05754 659.66598 457.55833 658.76748 458.56065 657.9368 460.0644 657.1041 461.572 656.7334 462.86747 656.8247 463.95085 656.91537 465.0355 657.46109 465.85423 658.46188 466.407ZM674.7329 472.11573 673.51437 467.85658 677.761 466.6336 677.4485 465.51637 673.184 466.74446 671.95486 462.48194 670.8485 462.81547 672.0668 467.05699 667.82046 468.29759 668.1272 469.41166 672.39077 468.18058 673.6208 472.44609 674.7329 472.11573ZM683.3899 469.63285 685.3641 470.7233 681.5988 477.54 679.68838 475.9225 679.0802 477.0235 680.9792 478.6347 682.1874 479.30207 686.56088 471.3843 688.53506 472.47477 689.0966 471.458 683.95156 468.61607 683.3899 469.63285ZM689.6277 482.3722C689.00607 482.0288 688.7074 481.46403 688.7318 480.67784 688.75686 479.8936 689.1088 478.88685 689.78787 477.65754 690.46408 476.43333 691.12777 475.60124 691.77896 475.16123 692.43148 474.72196 693.06857 474.674 693.6902 475.0174 694.31698 475.3636 694.6175 475.92945 694.5918 476.71495 694.5674 477.50114 694.2171 478.50636 693.5409 479.73054 692.8619 480.95985 692.1965 481.79353 691.5447 482.2315 690.8935 482.6715 690.2545 482.71839 689.6277 482.3722ZM689.0989 483.3296C690.10098 483.88313 691.0852 483.90946 692.0516 483.40864 693.0172 482.9091 693.9164 481.90553 694.74917 480.39793 695.5798 478.89418 695.94979 477.59996 695.85916 476.51533 695.7678 475.43196 695.2211 474.6135 694.219 474.06 693.2182 473.50718 692.235 473.48057 691.26937 473.9801 690.303 474.4809 689.4045 475.48323 688.57388 476.98698 687.74118 478.49458 687.3704 479.79005 687.46176 480.8734 687.55239 481.95808 688.0981 482.7768 689.0989 483.3296ZM696.6366 485.62187C696.2345 485.39976 695.97769 485.11735 695.866 484.77464 695.7554 484.43244 695.8039 484.07325 696.0117 483.69706 696.22 483.31996 696.4984 483.08717 696.84707 482.99867 697.19656 482.91065 697.5723 482.9777 697.9744 483.1998 698.3765 483.4219 698.6336 483.705 698.7456 484.04908 698.858 484.39457 698.8108 484.7545 698.60397 485.1289 698.3962 485.5051 698.11758 485.7372 697.768 485.82524 697.41946 485.91374 697.0423 485.84593 696.6366 485.62187ZM695.5924 485.5139C695.18026 485.40287 694.80416 485.41554 694.4641 485.5519 694.12448 485.68968 693.8559 485.93727 693.65847 486.2947 693.38259 486.7942 693.3422 487.28739 693.5375 487.77424 693.7336 488.2616 694.1413 488.6763 694.7605 489.01835 695.38339 489.36238 695.95236 489.48716 696.4675 489.39268 696.98269 489.29823 697.3782 489.00123 697.6541 488.5017 697.85159 488.1443 697.91769 487.78489 697.85256 487.42356 697.78787 487.06358 697.6001 486.73948 697.2893 486.4512 697.7491 486.58155 698.169 486.5709 698.54898 486.41926 698.9293 486.269 699.2296 485.9946 699.44979 485.59608 699.78488 484.98933 699.85708 484.4216 699.66629 483.89289 699.47506 483.36509 699.0345 482.91065 698.3446 482.5296 697.65567 482.14909 697.03646 482.01814 696.48696 482.13676 695.9378 482.25679 695.49569 482.62019 695.1606 483.2269 694.9404 483.62547 694.86849 484.02595 694.9447 484.42845 695.02139 484.83229 695.23727 485.1941 695.5924 485.5139ZM694.5446 486.67924C694.7233 486.35575 694.96377 486.1591 695.26589 486.08924 695.5689 486.01988 695.90316 486.08613 696.2686 486.288 696.6323 486.4889 696.8664 486.73655 696.9708 487.03099 697.0762 487.3259 697.0395 487.6351 696.8608 487.95857 696.68167 488.28294 696.4392 488.47908 696.1335 488.54695 695.8287 488.6153 695.4944 488.54905 695.1307 488.34815 694.76528 488.14628 694.5312 487.89863 694.4285 487.6052 694.3268 487.31227 694.3655 487.0036 694.5446 486.67924ZM708.81948 487.0852 709.1167 486.54716 704.0539 483.7507C704.52127 483.01924 705.06887 482.5678 705.6966 482.39643 706.3244 482.22508 707.00338 482.34104 707.7336 482.74436 708.15609 482.97776 708.5373 483.2558 708.8772 483.5785 709.2171 483.90116 709.5255 484.27479 709.8025 484.69935L710.37789 483.65766C710.07449 483.27186 709.7397 482.92033 709.3735 482.6031 709.00729 482.28587 708.61099 482.0095 708.1846 481.77397 707.11489 481.18309 706.0962 481.0261 705.12857 481.30299 704.1602 481.58113 703.38278 482.25126 702.7961 483.31333 702.1904 484.40989 702.00607 485.44343 702.243 486.41398 702.4792 487.3858 703.1003 488.1495 704.1062 488.70515 705.00747 489.20295 705.8808 489.30635 706.72628 489.01533 707.57107 488.72557 708.2688 488.08219 708.81948 487.0852ZM707.53976 486.80067C707.19998 487.39768 706.76638 487.78459 706.23886 487.96138 705.7107 488.13945 705.1753 488.07865 704.63278 487.77897 704.01876 487.43983 703.62319 486.99476 703.44607 486.44377 703.2689 485.89277 703.3264 485.28645 703.6186 484.6248L707.53976 486.80067ZM713.3787 492.275C713.2154 492.27809 713.0518 492.25605 712.88796 492.20884 712.7234 492.16294 712.55368 492.09169 712.3788 491.99507 711.75588 491.65098 711.3895 491.18458 711.27987 490.5959 711.1702 490.00718 711.32479 489.3337 711.74368 488.57545L713.694 485.04454 712.5872 484.4332 708.8854 491.13505 709.9921 491.74638 710.5675 490.7047C710.5749 491.24028 710.7094 491.70857 710.971 492.10963 711.2332 492.5127 711.6298 492.86088 712.1609 493.1542 712.2362 493.1958 712.32266 493.23689 712.42019 493.27745 712.517 493.31929 712.6266 493.36064 712.74899 493.40156L713.3787 492.275ZM720.1832 493.10466C719.74258 493.9025 719.2366 494.42939 718.6654 494.68534 718.0947 494.94325 717.512 494.9079 716.9171 494.5793 716.3274 494.25358 715.9891 493.78016 715.9023 493.15913 715.8148 492.53935 715.9914 491.83055 716.43209 491.03269 716.87069 490.23869 717.3759 489.71308 717.9478 489.45588 718.5197 489.19865 719.1006 489.2329 719.6903 489.5587 720.2852 489.88728 720.62539 490.36174 720.7109 490.98207 720.79769 491.60313 720.62179 492.31065 720.1832 493.10466ZM722.7195 491.1144C723.3491 489.97447 723.5643 488.98625 723.3649 488.14973 723.1669 487.31394 722.54507 486.6073 721.4996 486.02983 721.1128 485.81617 720.7318 485.64323 720.3567 485.511 719.98159 485.37879 719.5994 485.28346 719.21017 485.22508L718.6189 486.29545C719.0385 486.29896 719.42886 486.34629 719.79 486.43748 720.1518 486.52738 720.49618 486.6626 720.82296 486.8431 721.5455 487.2422 721.98208 487.7291 722.13278 488.3038 722.28347 488.87855 722.1484 489.54695 721.7274 490.30903L721.42599 490.85475C721.4173 490.33354 721.2895 489.87724 721.04257 489.4859 720.79556 489.09458 720.4244 488.76213 719.9291 488.48854 719.1083 488.03517 718.2736 487.9823 717.4252 488.33 716.576 488.67897 715.86587 489.37046 715.2947 490.40446 714.72219 491.441 714.5146 492.41093 714.67208 493.31425 714.8288 494.21885 715.31759 494.89784 716.1384 495.35124 716.6337 495.6248 717.11276 495.76194 717.5755 495.76268 718.03829 495.76338 718.4922 495.62925 718.9373 495.3603L718.3757 496.37709 719.4767 496.98524 722.7195 491.1144ZM722.4685 501.55165 723.4852 502.11326 725.937 490.32264 724.9202 489.76103 722.4685 501.55165ZM730.83877 502.92628 731.4078 501.8961C731.0011 501.8964 730.6178 501.8529 730.25778 501.7657 729.89779 501.67848 729.5582 501.54673 729.2391 501.37046 728.52426 500.9756 728.09408 500.4423 727.94869 499.77055 727.80386 499.10075 727.9574 498.35673 728.40939 497.53846 728.8613 496.7202 729.4097 496.19343 730.05447 495.95814 730.6998 495.72483 731.3799 495.8056 732.0948 496.20045 732.4139 496.37675 732.70626 496.594 732.97177 496.8523 733.23727 497.11058 733.47817 497.4119 733.69448 497.7563L734.2571 496.7376C734.02847 496.42469 733.76919 496.14155 733.4793 495.88813 733.1914 495.63417 732.86178 495.40458 732.4903 495.1994 731.4805 494.64167 730.503 494.51573 729.5577 494.82157 728.61367 495.12815 727.8441 495.82014 727.24899 496.89753 726.6454 497.99024 726.4709 499.01506 726.72537 499.97196 726.98037 500.93086 727.6306 501.69905 728.67617 502.27653 729.0144 502.46339 729.36447 502.6109 729.7262 502.7191 730.0872 502.82853 730.45809 502.89759 730.83877 502.92628ZM738.54 505.83564C738.5421 506.48323 738.6698 507.03025 738.92306 507.47666 739.1763 507.92308 739.562 508.2894 740.08029 508.57569 740.77859 508.96138 741.4523 509.01448 742.10147 508.735 742.74996 508.45677 743.3231 507.86705 743.8209 506.9658L746.0557 502.9198 744.949 502.30848 742.73428 506.31809C742.3796 506.96018 742.0023 507.37324 741.6025 507.55723 741.2032 507.74317 740.77059 507.7075 740.3046 507.4501 739.734 507.13493 739.3875 506.6961 739.265 506.13365 739.14309 505.57316 739.263 504.96549 739.6247 504.31065L741.7168 500.52314 740.61 499.9118 738.39529 503.92143C738.03848 504.56736 737.66116 504.98204 737.2633 505.16545 736.8654 505.34886 736.4291 505.30943 735.9542 505.04713 735.39126 504.73616 735.0489 504.2988 734.9271 503.73509 734.8066 503.17204 734.92617 502.565 735.28579 501.91398L737.3778 498.12648 736.27108 497.51515 732.5692 504.21699 733.67599 504.8283 734.25137 503.78666C734.2758 504.3366 734.4096 504.80619 734.6528 505.1954 734.89596 505.58464 735.2588 505.9125 735.74136 506.17903 736.22897 506.44837 736.7116 506.55335 737.1892 506.494 737.66616 506.43586 738.1164 506.2164 738.54 505.83564ZM745.2727 514.1477 746.2895 514.70938 748.7412 502.9187 747.7244 502.3571 745.2727 514.1477ZM753.0587 515.2771 753.6341 514.2355C753.2357 514.2237 752.84689 514.1646 752.4674 514.05838 752.08859 513.95407 751.7191 513.8024 751.35916 513.6036 750.81277 513.3018 750.44918 512.9919 750.2684 512.67379 750.0875 512.35568 750.08987 512.0287 750.2753 511.69297 750.4163 511.43766 750.6247 511.2912 750.9004 511.25355 751.1761 511.2159 751.64578 511.29457 752.30947 511.48954L752.73318 511.61366C753.6068 511.87797 754.29257 511.94853 754.7904 511.82536 755.28829 511.70216 755.6881 511.3674 755.98989 510.82106 756.334 510.1981 756.3601 509.5686 756.06838 508.93263 755.7758 508.2979 755.1987 507.74259 754.3371 507.26664 753.9784 507.0685 753.58499 506.897 753.15689 506.75218 752.7287 506.60734 752.2611 506.48567 751.7541 506.38719L751.1258 507.52458C751.6501 507.5376 752.13876 507.60008 752.5917 507.712 753.04397 507.8252 753.4641 507.98899 753.8522 508.20335 754.3705 508.4896 754.7197 508.7983 754.9 509.1295 755.08157 509.46134 755.0831 509.78874 754.9048 510.1117 754.73977 510.41044 754.5123 510.58387 754.22256 510.63203 753.93399 510.68089 753.4073 510.59074 752.6426 510.36158L752.2099 510.24006C751.4493 510.0065 750.8349 509.95454 750.36679 510.08415 749.89999 510.21449 749.5234 510.53877 749.2371 511.05705 748.8888 511.68766 748.84359 512.2974 749.1014 512.8863 749.35848 513.4765 749.8981 513.9986 750.72018 514.4527 751.1261 514.67697 751.525 514.8581 751.9169 514.9963 752.30929 515.13638 752.6899 515.23 753.0587 515.2771ZM755.78628 519.95498 756.803 520.51657 759.25479 508.72593 758.238 508.1643 755.78628 519.95498ZM758.006 521.181 759.21426 521.8484 761.2999 518.0724 763.2239 524.0632 764.7806 524.92306 762.6463 518.3088 770.0316 516.163 768.44039 515.2841 761.7727 517.2165 764.1493 512.9139 762.94107 512.2465 758.006 521.181Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7273 444.09736 624.8628 444.72456 625.8558 441.64195 627.75418 446.3216 629.09457 447.06199 627.3588 442.80708 631.90408 439.86726 630.5579 439.12373 626.8402 441.58345 626.29757 440.27659 627.2606 437.30244 626.1232 436.67417 623.7273 444.09736ZM633.46768 447.9931 641.1384 452.23008 641.69369 451.2248 634.02297 446.98783 633.46768 447.9931ZM634.81619 445.5517 642.48696 449.7887 643.0485 448.77195 635.3778 444.53495 634.81619 445.5517ZM650.2104 456.26646C650.85708 456.46205 651.45077 456.45344 651.99148 456.24064 652.5328 456.02983 652.96206 455.63719 653.27938 455.06275 653.76589 454.18193 653.83956 453.33216 653.5004 452.5134 653.1606 451.69596 652.4322 450.97874 651.31527 450.36177 650.9412 450.15519 650.5352 449.97926 650.09738 449.83399 649.6594 449.68876 649.18838 449.57347 648.684 449.48817L648.0399 450.65428C648.48226 450.6437 648.93008 450.69865 649.3833 450.81907 649.8379 450.9402 650.2828 451.12098 650.7181 451.36143 651.4751 451.77955 651.9696 452.2476 652.2016 452.7656 652.4336 453.2836 652.392 453.8279 652.07687 454.39854 651.78567 454.92573 651.3738 455.23554 650.84127 455.3279 650.30807 455.42158 649.7127 455.28684 649.0553 454.9237L648.0137 454.34834 647.4647 455.34214 648.55429 455.94395C649.1478 456.27183 649.53677 456.64155 649.7209 457.05314 649.905 457.46476 649.8737 457.89393 649.62698 458.34074 649.3738 458.799 649.0168 459.0608 648.5559 459.1261 648.0956 459.19337 647.5622 459.05955 646.9559 458.7246 646.62399 458.5413 646.2885 458.30854 645.9496 458.02635 645.6099 457.74546 645.2545 457.40419 644.88327 457.0025L644.2889 458.07865C644.6779 458.46015 645.0552 458.7935 645.4208 459.07875 645.7864 459.36396 646.1466 459.60459 646.50149 459.8006 647.4193 460.3076 648.2603 460.49974 649.0245 460.377 649.7892 460.25633 650.3676 459.84107 650.75967 459.13133 651.0332 458.63603 651.12246 458.13969 651.0273 457.6423 650.9322 457.14494 650.65988 456.6863 650.2104 456.26646ZM656.1655 455.2525 657.4293 455.95057 658.2691 454.43019 657.0053 453.73216 656.1655 455.2525ZM658.9907 465.44963C658.369 465.10624 658.0704 464.54145 658.09487 463.75526 658.1198 462.971 658.4718 461.96427 659.1508 460.73497 659.827 459.51075 660.4907 458.67866 661.14199 458.23866 661.79446 457.79939 662.4315 457.75144 663.05319 458.09483 663.67996 458.441 663.9805 459.00688 663.95486 459.79237 663.93038 460.57856 663.5801 461.58378 662.9039 462.80796 662.22488 464.03727 661.55947 464.87095 660.90768 465.30894 660.2565 465.74894 659.6175 465.7958 658.9907 465.44963ZM658.46188 466.407C659.4639 466.96055 660.4482 466.98689 661.41458 466.48606 662.3802 465.9865 663.2794 464.98295 664.1121 463.47535 664.94277 461.9716 665.31277 460.67738 665.2221 459.59275 665.1308 458.50938 664.5841 457.69093 663.58206 457.13743 662.5812 456.5846 661.59799 456.55799 660.6323 457.05754 659.66598 457.55833 658.76748 458.56065 657.9368 460.0644 657.1041 461.572 656.7334 462.86747 656.8247 463.95085 656.91537 465.0355 657.46109 465.85423 658.46188 466.407ZM674.7329 472.11573 673.51437 467.85658 677.761 466.6336 677.4485 465.51637 673.184 466.74446 671.95486 462.48194 670.8485 462.81547 672.0668 467.05699 667.82046 468.29759 668.1272 469.41166 672.39077 468.18058 673.6208 472.44609 674.7329 472.11573ZM683.3899 469.63285 685.3641 470.7233 681.5988 477.54 679.68838 475.9225 679.0802 477.0235 680.9792 478.6347 682.1874 479.30207 686.56088 471.3843 688.53506 472.47477 689.0966 471.458 683.95156 468.61607 683.3899 469.63285ZM689.6277 482.3722C689.00607 482.0288 688.7074 481.46403 688.7318 480.67784 688.75686 479.8936 689.1088 478.88685 689.78787 477.65754 690.46408 476.43333 691.12777 475.60124 691.77896 475.16123 692.43148 474.72196 693.06857 474.674 693.6902 475.0174 694.31698 475.3636 694.6175 475.92945 694.5918 476.71495 694.5674 477.50114 694.2171 478.50636 693.5409 479.73054 692.8619 480.95985 692.1965 481.79353 691.5447 482.2315 690.8935 482.6715 690.2545 482.71839 689.6277 482.3722ZM689.0989 483.3296C690.10098 483.88313 691.0852 483.90946 692.0516 483.40864 693.0172 482.9091 693.9164 481.90553 694.74917 480.39793 695.5798 478.89418 695.94979 477.59996 695.85916 476.51533 695.7678 475.43196 695.2211 474.6135 694.219 474.06 693.2182 473.50718 692.235 473.48057 691.26937 473.9801 690.303 474.4809 689.4045 475.48323 688.57388 476.98698 687.74118 478.49458 687.3704 479.79005 687.46176 480.8734 687.55239 481.95808 688.0981 482.7768 689.0989 483.3296ZM696.6366 485.62187C696.2345 485.39976 695.97769 485.11735 695.866 484.77464 695.7554 484.43244 695.8039 484.07325 696.0117 483.69706 696.22 483.31996 696.4984 483.08717 696.84707 482.99867 697.19656 482.91065 697.5723 482.9777 697.9744 483.1998 698.3765 483.4219 698.6336 483.705 698.7456 484.04908 698.858 484.39457 698.8108 484.7545 698.60397 485.1289 698.3962 485.5051 698.11758 485.7372 697.768 485.82524 697.41946 485.91374 697.0423 485.84593 696.6366 485.62187ZM695.5924 485.5139C695.18026 485.40287 694.80416 485.41554 694.4641 485.5519 694.12448 485.68968 693.8559 485.93727 693.65847 486.2947 693.38259 486.7942 693.3422 487.28739 693.5375 487.77424 693.7336 488.2616 694.1413 488.6763 694.7605 489.01835 695.38339 489.36238 695.95236 489.48716 696.4675 489.39268 696.98269 489.29823 697.3782 489.00123 697.6541 488.5017 697.85159 488.1443 697.91769 487.78489 697.85256 487.42356 697.78787 487.06358 697.6001 486.73948 697.2893 486.4512 697.7491 486.58155 698.169 486.5709 698.54898 486.41926 698.9293 486.269 699.2296 485.9946 699.44979 485.59608 699.78488 484.98933 699.85708 484.4216 699.66629 483.89289 699.47506 483.36509 699.0345 482.91065 698.3446 482.5296 697.65567 482.14909 697.03646 482.01814 696.48696 482.13676 695.9378 482.25679 695.49569 482.62019 695.1606 483.2269 694.9404 483.62547 694.86849 484.02595 694.9447 484.42845 695.02139 484.83229 695.23727 485.1941 695.5924 485.5139ZM694.5446 486.67924C694.7233 486.35575 694.96377 486.1591 695.26589 486.08924 695.5689 486.01988 695.90316 486.08613 696.2686 486.288 696.6323 486.4889 696.8664 486.73655 696.9708 487.03099 697.0762 487.3259 697.0395 487.6351 696.8608 487.95857 696.68167 488.28294 696.4392 488.47908 696.1335 488.54695 695.8287 488.6153 695.4944 488.54905 695.1307 488.34815 694.76528 488.14628 694.5312 487.89863 694.4285 487.6052 694.3268 487.31227 694.3655 487.0036 694.5446 486.67924ZM708.81948 487.0852 709.1167 486.54716 704.0539 483.7507C704.52127 483.01924 705.06887 482.5678 705.6966 482.39643 706.3244 482.22508 707.00338 482.34104 707.7336 482.74436 708.15609 482.97776 708.5373 483.2558 708.8772 483.5785 709.2171 483.90116 709.5255 484.27479 709.8025 484.69935L710.37789 483.65766C710.07449 483.27186 709.7397 482.92033 709.3735 482.6031 709.00729 482.28587 708.61099 482.0095 708.1846 481.77397 707.11489 481.18309 706.0962 481.0261 705.12857 481.30299 704.1602 481.58113 703.38278 482.25126 702.7961 483.31333 702.1904 484.40989 702.00607 485.44343 702.243 486.41398 702.4792 487.3858 703.1003 488.1495 704.1062 488.70515 705.00747 489.20295 705.8808 489.30635 706.72628 489.01533 707.57107 488.72557 708.2688 488.08219 708.81948 487.0852ZM707.53976 486.80067C707.19998 487.39768 706.76638 487.78459 706.23886 487.96138 705.7107 488.13945 705.1753 488.07865 704.63278 487.77897 704.01876 487.43983 703.62319 486.99476 703.44607 486.44377 703.2689 485.89277 703.3264 485.28645 703.6186 484.6248L707.53976 486.80067ZM713.3787 492.275C713.2154 492.27809 713.0518 492.25605 712.88796 492.20884 712.7234 492.16294 712.55368 492.09169 712.3788 491.99507 711.75588 491.65098 711.3895 491.18458 711.27987 490.5959 711.1702 490.00718 711.32479 489.3337 711.74368 488.57545L713.694 485.04454 712.5872 484.4332 708.8854 491.13505 709.9921 491.74638 710.5675 490.7047C710.5749 491.24028 710.7094 491.70857 710.971 492.10963 711.2332 492.5127 711.6298 492.86088 712.1609 493.1542 712.2362 493.1958 712.32266 493.23689 712.42019 493.27745 712.517 493.31929 712.6266 493.36064 712.74899 493.40156L713.3787 492.275ZM720.1832 493.10466C719.74258 493.9025 719.2366 494.42939 718.6654 494.68534 718.0947 494.94325 717.512 494.9079 716.9171 494.5793 716.3274 494.25358 715.9891 493.78016 715.9023 493.15913 715.8148 492.53935 715.9914 491.83055 716.43209 491.03269 716.87069 490.23869 717.3759 489.71308 717.9478 489.45588 718.5197 489.19865 719.1006 489.2329 719.6903 489.5587 720.2852 489.88728 720.62539 490.36174 720.7109 490.98207 720.79769 491.60313 720.62179 492.31065 720.1832 493.10466ZM722.7195 491.1144C723.3491 489.97447 723.5643 488.98625 723.3649 488.14973 723.1669 487.31394 722.54507 486.6073 721.4996 486.02983 721.1128 485.81617 720.7318 485.64323 720.3567 485.511 719.98159 485.37879 719.5994 485.28346 719.21017 485.22508L718.6189 486.29545C719.0385 486.29896 719.42886 486.34629 719.79 486.43748 720.1518 486.52738 720.49618 486.6626 720.82296 486.8431 721.5455 487.2422 721.98208 487.7291 722.13278 488.3038 722.28347 488.87855 722.1484 489.54695 721.7274 490.30903L721.42599 490.85475C721.4173 490.33354 721.2895 489.87724 721.04257 489.4859 720.79556 489.09458 720.4244 488.76213 719.9291 488.48854 719.1083 488.03517 718.2736 487.9823 717.4252 488.33 716.576 488.67897 715.86587 489.37046 715.2947 490.40446 714.72219 491.441 714.5146 492.41093 714.67208 493.31425 714.8288 494.21885 715.31759 494.89784 716.1384 495.35124 716.6337 495.6248 717.11276 495.76194 717.5755 495.76268 718.03829 495.76338 718.4922 495.62925 718.9373 495.3603L718.3757 496.37709 719.4767 496.98524 722.7195 491.1144ZM722.4685 501.55165 723.4852 502.11326 725.937 490.32264 724.9202 489.76103 722.4685 501.55165ZM730.83877 502.92628 731.4078 501.8961C731.0011 501.8964 730.6178 501.8529 730.25778 501.7657 729.89779 501.67848 729.5582 501.54673 729.2391 501.37046 728.52426 500.9756 728.09408 500.4423 727.94869 499.77055 727.80386 499.10075 727.9574 498.35673 728.40939 497.53846 728.8613 496.7202 729.4097 496.19343 730.05447 495.95814 730.6998 495.72483 731.3799 495.8056 732.0948 496.20045 732.4139 496.37675 732.70626 496.594 732.97177 496.8523 733.23727 497.11058 733.47817 497.4119 733.69448 497.7563L734.2571 496.7376C734.02847 496.42469 733.76919 496.14155 733.4793 495.88813 733.1914 495.63417 732.86178 495.40458 732.4903 495.1994 731.4805 494.64167 730.503 494.51573 729.5577 494.82157 728.61367 495.12815 727.8441 495.82014 727.24899 496.89753 726.6454 497.99024 726.4709 499.01506 726.72537 499.97196 726.98037 500.93086 727.6306 501.69905 728.67617 502.27653 729.0144 502.46339 729.36447 502.6109 729.7262 502.7191 730.0872 502.82853 730.45809 502.89759 730.83877 502.92628ZM738.54 505.83564C738.5421 506.48323 738.6698 507.03025 738.92306 507.47666 739.1763 507.92308 739.562 508.2894 740.08029 508.57569 740.77859 508.96138 741.4523 509.01448 742.10147 508.735 742.74996 508.45677 743.3231 507.86705 743.8209 506.9658L746.0557 502.9198 744.949 502.30848 742.73428 506.31809C742.3796 506.96018 742.0023 507.37324 741.6025 507.55723 741.2032 507.74317 740.77059 507.7075 740.3046 507.4501 739.734 507.13493 739.3875 506.6961 739.265 506.13365 739.14309 505.57316 739.263 504.96549 739.6247 504.31065L741.7168 500.52314 740.61 499.9118 738.39529 503.92143C738.03848 504.56736 737.66116 504.98204 737.2633 505.16545 736.8654 505.34886 736.4291 505.30943 735.9542 505.04713 735.39126 504.73616 735.0489 504.2988 734.9271 503.73509 734.8066 503.17204 734.92617 502.565 735.28579 501.91398L737.3778 498.12648 736.27108 497.51515 732.5692 504.21699 733.67599 504.8283 734.25137 503.78666C734.2758 504.3366 734.4096 504.80619 734.6528 505.1954 734.89596 505.58464 735.2588 505.9125 735.74136 506.17903 736.22897 506.44837 736.7116 506.55335 737.1892 506.494 737.66616 506.43586 738.1164 506.2164 738.54 505.83564ZM745.2727 514.1477 746.2895 514.70938 748.7412 502.9187 747.7244 502.3571 745.2727 514.1477ZM753.0587 515.2771 753.6341 514.2355C753.2357 514.2237 752.84689 514.1646 752.4674 514.05838 752.08859 513.95407 751.7191 513.8024 751.35916 513.6036 750.81277 513.3018 750.44918 512.9919 750.2684 512.67379 750.0875 512.35568 750.08987 512.0287 750.2753 511.69297 750.4163 511.43766 750.6247 511.2912 750.9004 511.25355 751.1761 511.2159 751.64578 511.29457 752.30947 511.48954L752.73318 511.61366C753.6068 511.87797 754.29257 511.94853 754.7904 511.82536 755.28829 511.70216 755.6881 511.3674 755.98989 510.82106 756.334 510.1981 756.3601 509.5686 756.06838 508.93263 755.7758 508.2979 755.1987 507.74259 754.3371 507.26664 753.9784 507.0685 753.58499 506.897 753.15689 506.75218 752.7287 506.60734 752.2611 506.48567 751.7541 506.38719L751.1258 507.52458C751.6501 507.5376 752.13876 507.60008 752.5917 507.712 753.04397 507.8252 753.4641 507.98899 753.8522 508.20335 754.3705 508.4896 754.7197 508.7983 754.9 509.1295 755.08157 509.46134 755.0831 509.78874 754.9048 510.1117 754.73977 510.41044 754.5123 510.58387 754.22256 510.63203 753.93399 510.68089 753.4073 510.59074 752.6426 510.36158L752.2099 510.24006C751.4493 510.0065 750.8349 509.95454 750.36679 510.08415 749.89999 510.21449 749.5234 510.53877 749.2371 511.05705 748.8888 511.68766 748.84359 512.2974 749.1014 512.8863 749.35848 513.4765 749.8981 513.9986 750.72018 514.4527 751.1261 514.67697 751.525 514.8581 751.9169 514.9963 752.30929 515.13638 752.6899 515.23 753.0587 515.2771ZM755.78628 519.95498 756.803 520.51657 759.25479 508.72593 758.238 508.1643 755.78628 519.95498ZM758.006 521.181 759.21426 521.8484 761.2999 518.0724 763.2239 524.0632 764.7806 524.92306 762.6463 518.3088 770.0316 516.163 768.44039 515.2841 761.7727 517.2165 764.1493 512.9139 762.94107 512.2465 758.006 521.181Z" fill="#9932cc"/> | |
| </g> | |
| <g clip-path="url(#clip_37)"> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7273 498.46913 624.8628 499.0963 625.8558 496.0137 627.75418 500.6934 629.09457 501.43376 627.3588 497.17884 631.90408 494.239 630.5579 493.49549 626.8402 495.9552 626.29757 494.64836 627.2606 491.6742 626.1232 491.04594 623.7273 498.46913ZM633.46768 502.36488 641.1384 506.60185 641.69369 505.59657 634.02297 501.3596 633.46768 502.36488ZM634.81619 499.92347 642.48696 504.16047 643.0485 503.1437 635.3778 498.9067 634.81619 499.92347ZM650.2104 510.6382C650.85708 510.8338 651.45077 510.8252 651.99148 510.6124 652.5328 510.40159 652.96206 510.00895 653.27938 509.4345 653.76589 508.55369 653.83956 507.70393 653.5004 506.88517 653.1606 506.06773 652.4322 505.3505 651.31527 504.73353 650.9412 504.52696 650.5352 504.351 650.09738 504.20579 649.6594 504.06053 649.18838 503.94523 648.684 503.85993L648.0399 505.02604C648.48226 505.01548 648.93008 505.0704 649.3833 505.19084 649.8379 505.31196 650.2828 505.49275 650.7181 505.7332 651.4751 506.1513 651.9696 506.61936 652.2016 507.13737 652.4336 507.65538 652.392 508.19969 652.07687 508.7703 651.78567 509.2975 651.3738 509.6073 650.84127 509.69969 650.30807 509.79335 649.7127 509.6586 649.0553 509.29548L648.0137 508.7201 647.4647 509.7139 648.55429 510.3157C649.1478 510.6436 649.53677 511.0133 649.7209 511.4249 649.905 511.83653 649.8737 512.2657 649.62698 512.71249 649.3738 513.1708 649.0168 513.43258 648.5559 513.49789 648.0956 513.5651 647.5622 513.4313 646.9559 513.0964 646.62399 512.913 646.2885 512.6803 645.9496 512.39816 645.6099 512.1172 645.2545 511.77595 644.88327 511.3743L644.2889 512.4504C644.6779 512.8319 645.0552 513.1653 645.4208 513.4505 645.7864 513.7357 646.1466 513.9764 646.50149 514.17239 647.4193 514.6793 648.2603 514.87149 649.0245 514.7488 649.7892 514.62808 650.3676 514.2128 650.75967 513.50308 651.0332 513.0078 651.12246 512.5115 651.0273 512.0141 650.9322 511.5167 650.65988 511.05809 650.2104 510.6382ZM656.1655 509.62428 657.4293 510.32234 658.2691 508.80198 657.0053 508.1039 656.1655 509.62428ZM658.9907 519.82138C658.369 519.47799 658.0704 518.9132 658.09487 518.127 658.1198 517.3428 658.4718 516.336 659.1508 515.1067 659.827 513.8825 660.4907 513.0504 661.14199 512.6104 661.79446 512.17117 662.4315 512.12319 663.05319 512.46658 663.67996 512.8128 663.9805 513.37869 663.95486 514.1641 663.93038 514.9503 663.5801 515.9555 662.9039 517.17977 662.22488 518.40908 661.55947 519.2427 660.90768 519.6807 660.2565 520.12069 659.6175 520.1676 658.9907 519.82138ZM658.46188 520.7788C659.4639 521.3323 660.4482 521.35867 661.41458 520.85787 662.3802 520.3583 663.2794 519.35476 664.1121 517.8471 664.94277 516.3433 665.31277 515.04916 665.2221 513.9645 665.1308 512.8811 664.5841 512.0627 663.58206 511.5092 662.5812 510.95637 661.59799 510.92976 660.6323 511.4293 659.66598 511.93009 658.76748 512.9324 657.9368 514.43618 657.1041 515.9437 656.7334 517.23928 656.8247 518.32266 656.91537 519.4072 657.46109 520.22598 658.46188 520.7788ZM674.7329 526.4875 673.51437 522.22836 677.761 521.0054 677.4485 519.8881 673.184 521.1162 671.95486 516.8537 670.8485 517.1872 672.0668 521.4287 667.82046 522.6693 668.1272 523.7834 672.39077 522.5523 673.6208 526.8178 674.7329 526.4875ZM683.3899 524.0046 685.3641 525.09506 681.5988 531.9118 679.68838 530.29428 679.0802 531.39529 680.9792 533.0065 682.1874 533.6738 686.56088 525.7561 688.53506 526.84658 689.0966 525.8298 683.95156 522.98788 683.3899 524.0046ZM689.6277 536.74398C689.00607 536.4006 688.7074 535.83578 688.7318 535.04959 688.75686 534.2654 689.1088 533.2586 689.78787 532.0293 690.46408 530.8051 691.12777 529.97299 691.77896 529.533 692.43148 529.0937 693.06857 529.0458 693.6902 529.38919 694.31698 529.73538 694.6175 530.3012 694.5918 531.08676 694.5674 531.8729 694.2171 532.8781 693.5409 534.1023 692.8619 535.3316 692.1965 536.1653 691.5447 536.6033 690.8935 537.0433 690.2545 537.09017 689.6277 536.74398ZM689.0989 537.70138C690.10098 538.2549 691.0852 538.2812 692.0516 537.7804 693.0172 537.2809 693.9164 536.2773 694.74917 534.7697 695.5798 533.2659 695.94979 531.97177 695.85916 530.8871 695.7678 529.8037 695.2211 528.9852 694.219 528.43179 693.2182 527.87899 692.235 527.8523 691.26937 528.35189 690.303 528.85269 689.4045 529.855 688.57388 531.3587 687.74118 532.86636 687.3704 534.1618 687.46176 535.2452 687.55239 536.32986 688.0981 537.14859 689.0989 537.70138ZM696.4214 536.16799 695.99569 536.93869C696.26419 536.95516 696.5215 536.997 696.76779 537.0642 697.0149 537.13198 697.24349 537.2238 697.4535 537.3398 698.01199 537.64828 698.33456 538.07138 698.4212 538.6091 698.5088 539.1472 698.3621 539.8108 697.9811 540.5998 697.95217 540.2701 697.8485 539.97207 697.6703 539.7057 697.493 539.43978 697.2537 539.2237 696.9526 539.0573 696.3271 538.71188 695.72769 538.6274 695.1543 538.804 694.58047 538.9815 694.1121 539.3986 693.7493 540.0554 693.39498 540.697 693.30056 541.3166 693.4661 541.9142 693.63119 542.51266 694.0291 542.9861 694.66 543.3346 695.3838 543.7344 696.0893 543.76199 696.7764 543.4173 697.46408 543.07406 698.0993 542.37478 698.6822 541.3194 699.2266 540.3338 699.42709 539.4177 699.2836 538.5711 699.14108 537.725 698.6748 537.08377 697.8849 536.64749 697.6722 536.52999 697.44528 536.432 697.20407 536.3536 696.9637 536.27566 696.7028 536.21377 696.4214 536.16799ZM696.64047 539.7491C697.02029 539.95889 697.2493 540.2545 697.3278 540.63607 697.4067 541.019 697.321 541.437 697.0708 541.89 696.8225 542.3395 696.5151 542.63327 696.14846 542.77127 695.7827 542.9098 695.41 542.87417 695.03018 542.66439 694.6504 542.45468 694.42178 542.1581 694.3443 541.7747 694.2668 541.3914 694.3522 540.97506 694.60049 540.5255 694.8507 540.0725 695.15847 539.77719 695.5237 539.6395 695.8884 539.5028 696.2607 539.5393 696.64047 539.7491ZM708.81948 541.457 709.1167 540.91897 704.0539 538.12246C704.52127 537.391 705.06887 536.9396 705.6966 536.7682 706.3244 536.5968 707.00338 536.7128 707.7336 537.11618 708.15609 537.3495 708.5373 537.62759 708.8772 537.95028 709.2171 538.27297 709.5255 538.64657 709.8025 539.0711L710.37789 538.0294C710.07449 537.6436 709.7397 537.2921 709.3735 536.97488 709.00729 536.6576 708.61099 536.3812 708.1846 536.14578 707.11489 535.5549 706.0962 535.3978 705.12857 535.67477 704.1602 535.9529 703.38278 536.623 702.7961 537.6851 702.1904 538.7816 702.00607 539.8152 702.243 540.7857 702.4792 541.75759 703.1003 542.5213 704.1062 543.0769 705.00747 543.5747 705.8808 543.6781 706.72628 543.3871 707.57107 543.09738 708.2688 542.454 708.81948 541.457ZM707.53976 541.1724C707.19998 541.7695 706.76638 542.1564 706.23886 542.3331 705.7107 542.5112 705.1753 542.45046 704.63278 542.15078 704.01876 541.8116 703.62319 541.3665 703.44607 540.8155 703.2689 540.2645 703.3264 539.6582 703.6186 538.9966L707.53976 541.1724ZM713.3787 546.6467C713.2154 546.64987 713.0518 546.6278 712.88796 546.5806 712.7234 546.53469 712.55368 546.46347 712.3788 546.3668 711.75588 546.02279 711.3895 545.55636 711.27987 544.96768 711.1702 544.37899 711.32479 543.70547 711.74368 542.9472L713.694 539.41629 712.5872 538.80496 708.8854 545.5068 709.9921 546.1181 710.5675 545.0765C710.5749 545.612 710.7094 546.0803 710.971 546.4814 711.2332 546.88449 711.6298 547.2326 712.1609 547.52597 712.2362 547.56759 712.32266 547.60867 712.42019 547.6492 712.517 547.69107 712.6266 547.7324 712.74899 547.7733L713.3787 546.6467ZM720.1832 547.47647C719.74258 548.27426 719.2366 548.80117 718.6654 549.05709 718.0947 549.315 717.512 549.27969 716.9171 548.9511 716.3274 548.6253 715.9891 548.1519 715.9023 547.5309 715.8148 546.91116 715.9914 546.20236 716.43209 545.4045 716.87069 544.6105 717.3759 544.08486 717.9478 543.82766 718.5197 543.57046 719.1006 543.6047 719.6903 543.9305 720.2852 544.25906 720.62539 544.7335 720.7109 545.3538 720.79769 545.97488 720.62179 546.68246 720.1832 547.47647ZM722.7195 545.48617C723.3491 544.34628 723.5643 543.358 723.3649 542.5215 723.1669 541.6857 722.54507 540.97909 721.4996 540.4016 721.1128 540.1879 720.7318 540.015 720.3567 539.88278 719.98159 539.75057 719.5994 539.6552 719.21017 539.5968L718.6189 540.6672C719.0385 540.6707 719.42886 540.7181 719.79 540.80929 720.1518 540.8992 720.49618 541.03439 720.82296 541.21487 721.5455 541.61398 721.98208 542.1009 722.13278 542.6756 722.28347 543.2503 722.1484 543.9187 721.7274 544.6808L721.42599 545.2265C721.4173 544.70529 721.2895 544.249 721.04257 543.85769 720.79556 543.4663 720.4244 543.13388 719.9291 542.8603 719.1083 542.4069 718.2736 542.35409 717.4252 542.7018 716.576 543.0507 715.86587 543.7422 715.2947 544.7762 714.72219 545.81277 714.5146 546.7827 714.67208 547.68606 714.8288 548.59066 715.31759 549.2696 716.1384 549.72299 716.6337 549.9966 717.11276 550.1337 717.5755 550.1344 718.03829 550.13516 718.4922 550.00106 718.9373 549.73208L718.3757 550.74887 719.4767 551.357 722.7195 545.48617ZM722.4685 555.9234 723.4852 556.485 725.937 544.6944 724.9202 544.13278 722.4685 555.9234ZM730.83877 557.29806 731.4078 556.2679C731.0011 556.2681 730.6178 556.2247 730.25778 556.13748 729.89779 556.05026 729.5582 555.9185 729.2391 555.7422 728.52426 555.34738 728.09408 554.814 727.94869 554.1423 727.80386 553.47256 727.9574 552.7285 728.40939 551.9102 728.8613 551.092 729.4097 550.5652 730.05447 550.3299 730.6998 550.09658 731.3799 550.17739 732.0948 550.5722 732.4139 550.7485 732.70626 550.96578 732.97177 551.22409 733.23727 551.48239 733.47817 551.7837 733.69448 552.12808L734.2571 551.1094C734.02847 550.79647 733.76919 550.5133 733.4793 550.2599 733.1914 550.0059 732.86178 549.77639 732.4903 549.57119 731.4805 549.0134 730.503 548.88748 729.5577 549.19338 728.61367 549.4999 727.8441 550.1919 727.24899 551.2693 726.6454 552.362 726.4709 553.38687 726.72537 554.34378 726.98037 555.3026 727.6306 556.0708 728.67617 556.6483 729.0144 556.83517 729.36447 556.98269 729.7262 557.0908 730.0872 557.2003 730.45809 557.26937 730.83877 557.29806ZM738.54 560.2074C738.5421 560.855 738.6698 561.402 738.92306 561.8484 739.1763 562.29489 739.562 562.6612 740.08029 562.94747 740.77859 563.3331 741.4523 563.3862 742.10147 563.10678 742.74996 562.8285 743.3231 562.2388 743.8209 561.3375L746.0557 557.29159 744.949 556.68026 742.73428 560.6898C742.3796 561.332 742.0023 561.745 741.6025 561.92898 741.2032 562.1149 740.77059 562.0792 740.3046 561.8219 739.734 561.5067 739.3875 561.0679 739.265 560.50546 739.14309 559.94497 739.263 559.3373 739.6247 558.6824L741.7168 554.8949 740.61 554.28359 738.39529 558.2932C738.03848 558.9391 737.66116 559.35379 737.2633 559.5372 736.8654 559.72067 736.4291 559.68118 735.9542 559.4189 735.39126 559.1079 735.0489 558.6706 734.9271 558.1068 734.8066 557.5438 734.92617 556.93679 735.28579 556.2857L737.3778 552.4982 736.27108 551.8869 732.5692 558.58877 733.67599 559.2001 734.25137 558.15847C734.2758 558.7084 734.4096 559.178 734.6528 559.5672 734.89596 559.95639 735.2588 560.28427 735.74136 560.5508 736.22897 560.8201 736.7116 560.9251 737.1892 560.8657 737.66616 560.8076 738.1164 560.5882 738.54 560.2074ZM745.2727 568.5195 746.2895 569.0811 748.7412 557.29049 747.7244 556.7289 745.2727 568.5195ZM753.0587 569.64889 753.6341 568.60726C753.2357 568.59548 752.84689 568.5364 752.4674 568.4301 752.08859 568.3258 751.7191 568.1742 751.35916 567.9754 750.81277 567.6736 750.44918 567.36367 750.2684 567.04556 750.0875 566.7274 750.08987 566.40048 750.2753 566.06478 750.4163 565.80947 750.6247 565.66299 750.9004 565.6253 751.1761 565.58767 751.64578 565.6663 752.30947 565.8613L752.73318 565.9854C753.6068 566.2497 754.29257 566.32028 754.7904 566.1971 755.28829 566.0739 755.6881 565.73916 755.98989 565.1928 756.334 564.5698 756.3601 563.94039 756.06838 563.3044 755.7758 562.6697 755.1987 562.1144 754.3371 561.6384 753.9784 561.44027 753.58499 561.2688 753.15689 561.12399 752.7287 560.97909 752.2611 560.8574 751.7541 560.759L751.1258 561.89639C751.6501 561.90939 752.13876 561.97189 752.5917 562.08377 753.04397 562.19699 753.4641 562.3607 753.8522 562.5751 754.3705 562.8614 754.7197 563.1701 754.9 563.5012 755.08157 563.83309 755.0831 564.1605 754.9048 564.48348 754.73977 564.78219 754.5123 564.9556 754.22256 565.0038 753.93399 565.0527 753.4073 564.9625 752.6426 564.73336L752.2099 564.6118C751.4493 564.37826 750.8349 564.3263 750.36679 564.45596 749.89999 564.58627 749.5234 564.9105 749.2371 565.42886 748.8888 566.05947 748.84359 566.6692 749.1014 567.25808 749.35848 567.84829 749.8981 568.37039 750.72018 568.82449 751.1261 569.0487 751.525 569.22988 751.9169 569.36807 752.30929 569.5081 752.6899 569.60177 753.0587 569.64889ZM755.78628 574.3267 756.803 574.8883 759.25479 563.0977 758.238 562.5361 755.78628 574.3267ZM758.006 575.5528 759.21426 576.22018 761.2999 572.44418 763.2239 578.43496 764.7806 579.2948 762.6463 572.68057 770.0316 570.5348 768.44039 569.6559 761.7727 571.58828 764.1493 567.28567 762.94107 566.6183 758.006 575.5528Z" fill="#daa520"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="8" stroke-linecap="butt" stroke-linejoin="round" fill="none" stroke="#ffffff" d="M623.7273 498.46913 624.8628 499.0963 625.8558 496.0137 627.75418 500.6934 629.09457 501.43376 627.3588 497.17884 631.90408 494.239 630.5579 493.49549 626.8402 495.9552 626.29757 494.64836 627.2606 491.6742 626.1232 491.04594 623.7273 498.46913ZM633.46768 502.36488 641.1384 506.60185 641.69369 505.59657 634.02297 501.3596 633.46768 502.36488ZM634.81619 499.92347 642.48696 504.16047 643.0485 503.1437 635.3778 498.9067 634.81619 499.92347ZM650.2104 510.6382C650.85708 510.8338 651.45077 510.8252 651.99148 510.6124 652.5328 510.40159 652.96206 510.00895 653.27938 509.4345 653.76589 508.55369 653.83956 507.70393 653.5004 506.88517 653.1606 506.06773 652.4322 505.3505 651.31527 504.73353 650.9412 504.52696 650.5352 504.351 650.09738 504.20579 649.6594 504.06053 649.18838 503.94523 648.684 503.85993L648.0399 505.02604C648.48226 505.01548 648.93008 505.0704 649.3833 505.19084 649.8379 505.31196 650.2828 505.49275 650.7181 505.7332 651.4751 506.1513 651.9696 506.61936 652.2016 507.13737 652.4336 507.65538 652.392 508.19969 652.07687 508.7703 651.78567 509.2975 651.3738 509.6073 650.84127 509.69969 650.30807 509.79335 649.7127 509.6586 649.0553 509.29548L648.0137 508.7201 647.4647 509.7139 648.55429 510.3157C649.1478 510.6436 649.53677 511.0133 649.7209 511.4249 649.905 511.83653 649.8737 512.2657 649.62698 512.71249 649.3738 513.1708 649.0168 513.43258 648.5559 513.49789 648.0956 513.5651 647.5622 513.4313 646.9559 513.0964 646.62399 512.913 646.2885 512.6803 645.9496 512.39816 645.6099 512.1172 645.2545 511.77595 644.88327 511.3743L644.2889 512.4504C644.6779 512.8319 645.0552 513.1653 645.4208 513.4505 645.7864 513.7357 646.1466 513.9764 646.50149 514.17239 647.4193 514.6793 648.2603 514.87149 649.0245 514.7488 649.7892 514.62808 650.3676 514.2128 650.75967 513.50308 651.0332 513.0078 651.12246 512.5115 651.0273 512.0141 650.9322 511.5167 650.65988 511.05809 650.2104 510.6382ZM656.1655 509.62428 657.4293 510.32234 658.2691 508.80198 657.0053 508.1039 656.1655 509.62428ZM658.9907 519.82138C658.369 519.47799 658.0704 518.9132 658.09487 518.127 658.1198 517.3428 658.4718 516.336 659.1508 515.1067 659.827 513.8825 660.4907 513.0504 661.14199 512.6104 661.79446 512.17117 662.4315 512.12319 663.05319 512.46658 663.67996 512.8128 663.9805 513.37869 663.95486 514.1641 663.93038 514.9503 663.5801 515.9555 662.9039 517.17977 662.22488 518.40908 661.55947 519.2427 660.90768 519.6807 660.2565 520.12069 659.6175 520.1676 658.9907 519.82138ZM658.46188 520.7788C659.4639 521.3323 660.4482 521.35867 661.41458 520.85787 662.3802 520.3583 663.2794 519.35476 664.1121 517.8471 664.94277 516.3433 665.31277 515.04916 665.2221 513.9645 665.1308 512.8811 664.5841 512.0627 663.58206 511.5092 662.5812 510.95637 661.59799 510.92976 660.6323 511.4293 659.66598 511.93009 658.76748 512.9324 657.9368 514.43618 657.1041 515.9437 656.7334 517.23928 656.8247 518.32266 656.91537 519.4072 657.46109 520.22598 658.46188 520.7788ZM674.7329 526.4875 673.51437 522.22836 677.761 521.0054 677.4485 519.8881 673.184 521.1162 671.95486 516.8537 670.8485 517.1872 672.0668 521.4287 667.82046 522.6693 668.1272 523.7834 672.39077 522.5523 673.6208 526.8178 674.7329 526.4875ZM683.3899 524.0046 685.3641 525.09506 681.5988 531.9118 679.68838 530.29428 679.0802 531.39529 680.9792 533.0065 682.1874 533.6738 686.56088 525.7561 688.53506 526.84658 689.0966 525.8298 683.95156 522.98788 683.3899 524.0046ZM689.6277 536.74398C689.00607 536.4006 688.7074 535.83578 688.7318 535.04959 688.75686 534.2654 689.1088 533.2586 689.78787 532.0293 690.46408 530.8051 691.12777 529.97299 691.77896 529.533 692.43148 529.0937 693.06857 529.0458 693.6902 529.38919 694.31698 529.73538 694.6175 530.3012 694.5918 531.08676 694.5674 531.8729 694.2171 532.8781 693.5409 534.1023 692.8619 535.3316 692.1965 536.1653 691.5447 536.6033 690.8935 537.0433 690.2545 537.09017 689.6277 536.74398ZM689.0989 537.70138C690.10098 538.2549 691.0852 538.2812 692.0516 537.7804 693.0172 537.2809 693.9164 536.2773 694.74917 534.7697 695.5798 533.2659 695.94979 531.97177 695.85916 530.8871 695.7678 529.8037 695.2211 528.9852 694.219 528.43179 693.2182 527.87899 692.235 527.8523 691.26937 528.35189 690.303 528.85269 689.4045 529.855 688.57388 531.3587 687.74118 532.86636 687.3704 534.1618 687.46176 535.2452 687.55239 536.32986 688.0981 537.14859 689.0989 537.70138ZM696.4214 536.16799 695.99569 536.93869C696.26419 536.95516 696.5215 536.997 696.76779 537.0642 697.0149 537.13198 697.24349 537.2238 697.4535 537.3398 698.01199 537.64828 698.33456 538.07138 698.4212 538.6091 698.5088 539.1472 698.3621 539.8108 697.9811 540.5998 697.95217 540.2701 697.8485 539.97207 697.6703 539.7057 697.493 539.43978 697.2537 539.2237 696.9526 539.0573 696.3271 538.71188 695.72769 538.6274 695.1543 538.804 694.58047 538.9815 694.1121 539.3986 693.7493 540.0554 693.39498 540.697 693.30056 541.3166 693.4661 541.9142 693.63119 542.51266 694.0291 542.9861 694.66 543.3346 695.3838 543.7344 696.0893 543.76199 696.7764 543.4173 697.46408 543.07406 698.0993 542.37478 698.6822 541.3194 699.2266 540.3338 699.42709 539.4177 699.2836 538.5711 699.14108 537.725 698.6748 537.08377 697.8849 536.64749 697.6722 536.52999 697.44528 536.432 697.20407 536.3536 696.9637 536.27566 696.7028 536.21377 696.4214 536.16799ZM696.64047 539.7491C697.02029 539.95889 697.2493 540.2545 697.3278 540.63607 697.4067 541.019 697.321 541.437 697.0708 541.89 696.8225 542.3395 696.5151 542.63327 696.14846 542.77127 695.7827 542.9098 695.41 542.87417 695.03018 542.66439 694.6504 542.45468 694.42178 542.1581 694.3443 541.7747 694.2668 541.3914 694.3522 540.97506 694.60049 540.5255 694.8507 540.0725 695.15847 539.77719 695.5237 539.6395 695.8884 539.5028 696.2607 539.5393 696.64047 539.7491ZM708.81948 541.457 709.1167 540.91897 704.0539 538.12246C704.52127 537.391 705.06887 536.9396 705.6966 536.7682 706.3244 536.5968 707.00338 536.7128 707.7336 537.11618 708.15609 537.3495 708.5373 537.62759 708.8772 537.95028 709.2171 538.27297 709.5255 538.64657 709.8025 539.0711L710.37789 538.0294C710.07449 537.6436 709.7397 537.2921 709.3735 536.97488 709.00729 536.6576 708.61099 536.3812 708.1846 536.14578 707.11489 535.5549 706.0962 535.3978 705.12857 535.67477 704.1602 535.9529 703.38278 536.623 702.7961 537.6851 702.1904 538.7816 702.00607 539.8152 702.243 540.7857 702.4792 541.75759 703.1003 542.5213 704.1062 543.0769 705.00747 543.5747 705.8808 543.6781 706.72628 543.3871 707.57107 543.09738 708.2688 542.454 708.81948 541.457ZM707.53976 541.1724C707.19998 541.7695 706.76638 542.1564 706.23886 542.3331 705.7107 542.5112 705.1753 542.45046 704.63278 542.15078 704.01876 541.8116 703.62319 541.3665 703.44607 540.8155 703.2689 540.2645 703.3264 539.6582 703.6186 538.9966L707.53976 541.1724ZM713.3787 546.6467C713.2154 546.64987 713.0518 546.6278 712.88796 546.5806 712.7234 546.53469 712.55368 546.46347 712.3788 546.3668 711.75588 546.02279 711.3895 545.55636 711.27987 544.96768 711.1702 544.37899 711.32479 543.70547 711.74368 542.9472L713.694 539.41629 712.5872 538.80496 708.8854 545.5068 709.9921 546.1181 710.5675 545.0765C710.5749 545.612 710.7094 546.0803 710.971 546.4814 711.2332 546.88449 711.6298 547.2326 712.1609 547.52597 712.2362 547.56759 712.32266 547.60867 712.42019 547.6492 712.517 547.69107 712.6266 547.7324 712.74899 547.7733L713.3787 546.6467ZM720.1832 547.47647C719.74258 548.27426 719.2366 548.80117 718.6654 549.05709 718.0947 549.315 717.512 549.27969 716.9171 548.9511 716.3274 548.6253 715.9891 548.1519 715.9023 547.5309 715.8148 546.91116 715.9914 546.20236 716.43209 545.4045 716.87069 544.6105 717.3759 544.08486 717.9478 543.82766 718.5197 543.57046 719.1006 543.6047 719.6903 543.9305 720.2852 544.25906 720.62539 544.7335 720.7109 545.3538 720.79769 545.97488 720.62179 546.68246 720.1832 547.47647ZM722.7195 545.48617C723.3491 544.34628 723.5643 543.358 723.3649 542.5215 723.1669 541.6857 722.54507 540.97909 721.4996 540.4016 721.1128 540.1879 720.7318 540.015 720.3567 539.88278 719.98159 539.75057 719.5994 539.6552 719.21017 539.5968L718.6189 540.6672C719.0385 540.6707 719.42886 540.7181 719.79 540.80929 720.1518 540.8992 720.49618 541.03439 720.82296 541.21487 721.5455 541.61398 721.98208 542.1009 722.13278 542.6756 722.28347 543.2503 722.1484 543.9187 721.7274 544.6808L721.42599 545.2265C721.4173 544.70529 721.2895 544.249 721.04257 543.85769 720.79556 543.4663 720.4244 543.13388 719.9291 542.8603 719.1083 542.4069 718.2736 542.35409 717.4252 542.7018 716.576 543.0507 715.86587 543.7422 715.2947 544.7762 714.72219 545.81277 714.5146 546.7827 714.67208 547.68606 714.8288 548.59066 715.31759 549.2696 716.1384 549.72299 716.6337 549.9966 717.11276 550.1337 717.5755 550.1344 718.03829 550.13516 718.4922 550.00106 718.9373 549.73208L718.3757 550.74887 719.4767 551.357 722.7195 545.48617ZM722.4685 555.9234 723.4852 556.485 725.937 544.6944 724.9202 544.13278 722.4685 555.9234ZM730.83877 557.29806 731.4078 556.2679C731.0011 556.2681 730.6178 556.2247 730.25778 556.13748 729.89779 556.05026 729.5582 555.9185 729.2391 555.7422 728.52426 555.34738 728.09408 554.814 727.94869 554.1423 727.80386 553.47256 727.9574 552.7285 728.40939 551.9102 728.8613 551.092 729.4097 550.5652 730.05447 550.3299 730.6998 550.09658 731.3799 550.17739 732.0948 550.5722 732.4139 550.7485 732.70626 550.96578 732.97177 551.22409 733.23727 551.48239 733.47817 551.7837 733.69448 552.12808L734.2571 551.1094C734.02847 550.79647 733.76919 550.5133 733.4793 550.2599 733.1914 550.0059 732.86178 549.77639 732.4903 549.57119 731.4805 549.0134 730.503 548.88748 729.5577 549.19338 728.61367 549.4999 727.8441 550.1919 727.24899 551.2693 726.6454 552.362 726.4709 553.38687 726.72537 554.34378 726.98037 555.3026 727.6306 556.0708 728.67617 556.6483 729.0144 556.83517 729.36447 556.98269 729.7262 557.0908 730.0872 557.2003 730.45809 557.26937 730.83877 557.29806ZM738.54 560.2074C738.5421 560.855 738.6698 561.402 738.92306 561.8484 739.1763 562.29489 739.562 562.6612 740.08029 562.94747 740.77859 563.3331 741.4523 563.3862 742.10147 563.10678 742.74996 562.8285 743.3231 562.2388 743.8209 561.3375L746.0557 557.29159 744.949 556.68026 742.73428 560.6898C742.3796 561.332 742.0023 561.745 741.6025 561.92898 741.2032 562.1149 740.77059 562.0792 740.3046 561.8219 739.734 561.5067 739.3875 561.0679 739.265 560.50546 739.14309 559.94497 739.263 559.3373 739.6247 558.6824L741.7168 554.8949 740.61 554.28359 738.39529 558.2932C738.03848 558.9391 737.66116 559.35379 737.2633 559.5372 736.8654 559.72067 736.4291 559.68118 735.9542 559.4189 735.39126 559.1079 735.0489 558.6706 734.9271 558.1068 734.8066 557.5438 734.92617 556.93679 735.28579 556.2857L737.3778 552.4982 736.27108 551.8869 732.5692 558.58877 733.67599 559.2001 734.25137 558.15847C734.2758 558.7084 734.4096 559.178 734.6528 559.5672 734.89596 559.95639 735.2588 560.28427 735.74136 560.5508 736.22897 560.8201 736.7116 560.9251 737.1892 560.8657 737.66616 560.8076 738.1164 560.5882 738.54 560.2074ZM745.2727 568.5195 746.2895 569.0811 748.7412 557.29049 747.7244 556.7289 745.2727 568.5195ZM753.0587 569.64889 753.6341 568.60726C753.2357 568.59548 752.84689 568.5364 752.4674 568.4301 752.08859 568.3258 751.7191 568.1742 751.35916 567.9754 750.81277 567.6736 750.44918 567.36367 750.2684 567.04556 750.0875 566.7274 750.08987 566.40048 750.2753 566.06478 750.4163 565.80947 750.6247 565.66299 750.9004 565.6253 751.1761 565.58767 751.64578 565.6663 752.30947 565.8613L752.73318 565.9854C753.6068 566.2497 754.29257 566.32028 754.7904 566.1971 755.28829 566.0739 755.6881 565.73916 755.98989 565.1928 756.334 564.5698 756.3601 563.94039 756.06838 563.3044 755.7758 562.6697 755.1987 562.1144 754.3371 561.6384 753.9784 561.44027 753.58499 561.2688 753.15689 561.12399 752.7287 560.97909 752.2611 560.8574 751.7541 560.759L751.1258 561.89639C751.6501 561.90939 752.13876 561.97189 752.5917 562.08377 753.04397 562.19699 753.4641 562.3607 753.8522 562.5751 754.3705 562.8614 754.7197 563.1701 754.9 563.5012 755.08157 563.83309 755.0831 564.1605 754.9048 564.48348 754.73977 564.78219 754.5123 564.9556 754.22256 565.0038 753.93399 565.0527 753.4073 564.9625 752.6426 564.73336L752.2099 564.6118C751.4493 564.37826 750.8349 564.3263 750.36679 564.45596 749.89999 564.58627 749.5234 564.9105 749.2371 565.42886 748.8888 566.05947 748.84359 566.6692 749.1014 567.25808 749.35848 567.84829 749.8981 568.37039 750.72018 568.82449 751.1261 569.0487 751.525 569.22988 751.9169 569.36807 752.30929 569.5081 752.6899 569.60177 753.0587 569.64889ZM755.78628 574.3267 756.803 574.8883 759.25479 563.0977 758.238 562.5361 755.78628 574.3267ZM758.006 575.5528 759.21426 576.22018 761.2999 572.44418 763.2239 578.43496 764.7806 579.2948 762.6463 572.68057 770.0316 570.5348 768.44039 569.6559 761.7727 571.58828 764.1493 567.28567 762.94107 566.6183 758.006 575.5528Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M623.7273 498.46913 624.8628 499.0963 625.8558 496.0137 627.75418 500.6934 629.09457 501.43376 627.3588 497.17884 631.90408 494.239 630.5579 493.49549 626.8402 495.9552 626.29757 494.64836 627.2606 491.6742 626.1232 491.04594 623.7273 498.46913ZM633.46768 502.36488 641.1384 506.60185 641.69369 505.59657 634.02297 501.3596 633.46768 502.36488ZM634.81619 499.92347 642.48696 504.16047 643.0485 503.1437 635.3778 498.9067 634.81619 499.92347ZM650.2104 510.6382C650.85708 510.8338 651.45077 510.8252 651.99148 510.6124 652.5328 510.40159 652.96206 510.00895 653.27938 509.4345 653.76589 508.55369 653.83956 507.70393 653.5004 506.88517 653.1606 506.06773 652.4322 505.3505 651.31527 504.73353 650.9412 504.52696 650.5352 504.351 650.09738 504.20579 649.6594 504.06053 649.18838 503.94523 648.684 503.85993L648.0399 505.02604C648.48226 505.01548 648.93008 505.0704 649.3833 505.19084 649.8379 505.31196 650.2828 505.49275 650.7181 505.7332 651.4751 506.1513 651.9696 506.61936 652.2016 507.13737 652.4336 507.65538 652.392 508.19969 652.07687 508.7703 651.78567 509.2975 651.3738 509.6073 650.84127 509.69969 650.30807 509.79335 649.7127 509.6586 649.0553 509.29548L648.0137 508.7201 647.4647 509.7139 648.55429 510.3157C649.1478 510.6436 649.53677 511.0133 649.7209 511.4249 649.905 511.83653 649.8737 512.2657 649.62698 512.71249 649.3738 513.1708 649.0168 513.43258 648.5559 513.49789 648.0956 513.5651 647.5622 513.4313 646.9559 513.0964 646.62399 512.913 646.2885 512.6803 645.9496 512.39816 645.6099 512.1172 645.2545 511.77595 644.88327 511.3743L644.2889 512.4504C644.6779 512.8319 645.0552 513.1653 645.4208 513.4505 645.7864 513.7357 646.1466 513.9764 646.50149 514.17239 647.4193 514.6793 648.2603 514.87149 649.0245 514.7488 649.7892 514.62808 650.3676 514.2128 650.75967 513.50308 651.0332 513.0078 651.12246 512.5115 651.0273 512.0141 650.9322 511.5167 650.65988 511.05809 650.2104 510.6382ZM656.1655 509.62428 657.4293 510.32234 658.2691 508.80198 657.0053 508.1039 656.1655 509.62428ZM658.9907 519.82138C658.369 519.47799 658.0704 518.9132 658.09487 518.127 658.1198 517.3428 658.4718 516.336 659.1508 515.1067 659.827 513.8825 660.4907 513.0504 661.14199 512.6104 661.79446 512.17117 662.4315 512.12319 663.05319 512.46658 663.67996 512.8128 663.9805 513.37869 663.95486 514.1641 663.93038 514.9503 663.5801 515.9555 662.9039 517.17977 662.22488 518.40908 661.55947 519.2427 660.90768 519.6807 660.2565 520.12069 659.6175 520.1676 658.9907 519.82138ZM658.46188 520.7788C659.4639 521.3323 660.4482 521.35867 661.41458 520.85787 662.3802 520.3583 663.2794 519.35476 664.1121 517.8471 664.94277 516.3433 665.31277 515.04916 665.2221 513.9645 665.1308 512.8811 664.5841 512.0627 663.58206 511.5092 662.5812 510.95637 661.59799 510.92976 660.6323 511.4293 659.66598 511.93009 658.76748 512.9324 657.9368 514.43618 657.1041 515.9437 656.7334 517.23928 656.8247 518.32266 656.91537 519.4072 657.46109 520.22598 658.46188 520.7788ZM674.7329 526.4875 673.51437 522.22836 677.761 521.0054 677.4485 519.8881 673.184 521.1162 671.95486 516.8537 670.8485 517.1872 672.0668 521.4287 667.82046 522.6693 668.1272 523.7834 672.39077 522.5523 673.6208 526.8178 674.7329 526.4875ZM683.3899 524.0046 685.3641 525.09506 681.5988 531.9118 679.68838 530.29428 679.0802 531.39529 680.9792 533.0065 682.1874 533.6738 686.56088 525.7561 688.53506 526.84658 689.0966 525.8298 683.95156 522.98788 683.3899 524.0046ZM689.6277 536.74398C689.00607 536.4006 688.7074 535.83578 688.7318 535.04959 688.75686 534.2654 689.1088 533.2586 689.78787 532.0293 690.46408 530.8051 691.12777 529.97299 691.77896 529.533 692.43148 529.0937 693.06857 529.0458 693.6902 529.38919 694.31698 529.73538 694.6175 530.3012 694.5918 531.08676 694.5674 531.8729 694.2171 532.8781 693.5409 534.1023 692.8619 535.3316 692.1965 536.1653 691.5447 536.6033 690.8935 537.0433 690.2545 537.09017 689.6277 536.74398ZM689.0989 537.70138C690.10098 538.2549 691.0852 538.2812 692.0516 537.7804 693.0172 537.2809 693.9164 536.2773 694.74917 534.7697 695.5798 533.2659 695.94979 531.97177 695.85916 530.8871 695.7678 529.8037 695.2211 528.9852 694.219 528.43179 693.2182 527.87899 692.235 527.8523 691.26937 528.35189 690.303 528.85269 689.4045 529.855 688.57388 531.3587 687.74118 532.86636 687.3704 534.1618 687.46176 535.2452 687.55239 536.32986 688.0981 537.14859 689.0989 537.70138ZM696.4214 536.16799 695.99569 536.93869C696.26419 536.95516 696.5215 536.997 696.76779 537.0642 697.0149 537.13198 697.24349 537.2238 697.4535 537.3398 698.01199 537.64828 698.33456 538.07138 698.4212 538.6091 698.5088 539.1472 698.3621 539.8108 697.9811 540.5998 697.95217 540.2701 697.8485 539.97207 697.6703 539.7057 697.493 539.43978 697.2537 539.2237 696.9526 539.0573 696.3271 538.71188 695.72769 538.6274 695.1543 538.804 694.58047 538.9815 694.1121 539.3986 693.7493 540.0554 693.39498 540.697 693.30056 541.3166 693.4661 541.9142 693.63119 542.51266 694.0291 542.9861 694.66 543.3346 695.3838 543.7344 696.0893 543.76199 696.7764 543.4173 697.46408 543.07406 698.0993 542.37478 698.6822 541.3194 699.2266 540.3338 699.42709 539.4177 699.2836 538.5711 699.14108 537.725 698.6748 537.08377 697.8849 536.64749 697.6722 536.52999 697.44528 536.432 697.20407 536.3536 696.9637 536.27566 696.7028 536.21377 696.4214 536.16799ZM696.64047 539.7491C697.02029 539.95889 697.2493 540.2545 697.3278 540.63607 697.4067 541.019 697.321 541.437 697.0708 541.89 696.8225 542.3395 696.5151 542.63327 696.14846 542.77127 695.7827 542.9098 695.41 542.87417 695.03018 542.66439 694.6504 542.45468 694.42178 542.1581 694.3443 541.7747 694.2668 541.3914 694.3522 540.97506 694.60049 540.5255 694.8507 540.0725 695.15847 539.77719 695.5237 539.6395 695.8884 539.5028 696.2607 539.5393 696.64047 539.7491ZM708.81948 541.457 709.1167 540.91897 704.0539 538.12246C704.52127 537.391 705.06887 536.9396 705.6966 536.7682 706.3244 536.5968 707.00338 536.7128 707.7336 537.11618 708.15609 537.3495 708.5373 537.62759 708.8772 537.95028 709.2171 538.27297 709.5255 538.64657 709.8025 539.0711L710.37789 538.0294C710.07449 537.6436 709.7397 537.2921 709.3735 536.97488 709.00729 536.6576 708.61099 536.3812 708.1846 536.14578 707.11489 535.5549 706.0962 535.3978 705.12857 535.67477 704.1602 535.9529 703.38278 536.623 702.7961 537.6851 702.1904 538.7816 702.00607 539.8152 702.243 540.7857 702.4792 541.75759 703.1003 542.5213 704.1062 543.0769 705.00747 543.5747 705.8808 543.6781 706.72628 543.3871 707.57107 543.09738 708.2688 542.454 708.81948 541.457ZM707.53976 541.1724C707.19998 541.7695 706.76638 542.1564 706.23886 542.3331 705.7107 542.5112 705.1753 542.45046 704.63278 542.15078 704.01876 541.8116 703.62319 541.3665 703.44607 540.8155 703.2689 540.2645 703.3264 539.6582 703.6186 538.9966L707.53976 541.1724ZM713.3787 546.6467C713.2154 546.64987 713.0518 546.6278 712.88796 546.5806 712.7234 546.53469 712.55368 546.46347 712.3788 546.3668 711.75588 546.02279 711.3895 545.55636 711.27987 544.96768 711.1702 544.37899 711.32479 543.70547 711.74368 542.9472L713.694 539.41629 712.5872 538.80496 708.8854 545.5068 709.9921 546.1181 710.5675 545.0765C710.5749 545.612 710.7094 546.0803 710.971 546.4814 711.2332 546.88449 711.6298 547.2326 712.1609 547.52597 712.2362 547.56759 712.32266 547.60867 712.42019 547.6492 712.517 547.69107 712.6266 547.7324 712.74899 547.7733L713.3787 546.6467ZM720.1832 547.47647C719.74258 548.27426 719.2366 548.80117 718.6654 549.05709 718.0947 549.315 717.512 549.27969 716.9171 548.9511 716.3274 548.6253 715.9891 548.1519 715.9023 547.5309 715.8148 546.91116 715.9914 546.20236 716.43209 545.4045 716.87069 544.6105 717.3759 544.08486 717.9478 543.82766 718.5197 543.57046 719.1006 543.6047 719.6903 543.9305 720.2852 544.25906 720.62539 544.7335 720.7109 545.3538 720.79769 545.97488 720.62179 546.68246 720.1832 547.47647ZM722.7195 545.48617C723.3491 544.34628 723.5643 543.358 723.3649 542.5215 723.1669 541.6857 722.54507 540.97909 721.4996 540.4016 721.1128 540.1879 720.7318 540.015 720.3567 539.88278 719.98159 539.75057 719.5994 539.6552 719.21017 539.5968L718.6189 540.6672C719.0385 540.6707 719.42886 540.7181 719.79 540.80929 720.1518 540.8992 720.49618 541.03439 720.82296 541.21487 721.5455 541.61398 721.98208 542.1009 722.13278 542.6756 722.28347 543.2503 722.1484 543.9187 721.7274 544.6808L721.42599 545.2265C721.4173 544.70529 721.2895 544.249 721.04257 543.85769 720.79556 543.4663 720.4244 543.13388 719.9291 542.8603 719.1083 542.4069 718.2736 542.35409 717.4252 542.7018 716.576 543.0507 715.86587 543.7422 715.2947 544.7762 714.72219 545.81277 714.5146 546.7827 714.67208 547.68606 714.8288 548.59066 715.31759 549.2696 716.1384 549.72299 716.6337 549.9966 717.11276 550.1337 717.5755 550.1344 718.03829 550.13516 718.4922 550.00106 718.9373 549.73208L718.3757 550.74887 719.4767 551.357 722.7195 545.48617ZM722.4685 555.9234 723.4852 556.485 725.937 544.6944 724.9202 544.13278 722.4685 555.9234ZM730.83877 557.29806 731.4078 556.2679C731.0011 556.2681 730.6178 556.2247 730.25778 556.13748 729.89779 556.05026 729.5582 555.9185 729.2391 555.7422 728.52426 555.34738 728.09408 554.814 727.94869 554.1423 727.80386 553.47256 727.9574 552.7285 728.40939 551.9102 728.8613 551.092 729.4097 550.5652 730.05447 550.3299 730.6998 550.09658 731.3799 550.17739 732.0948 550.5722 732.4139 550.7485 732.70626 550.96578 732.97177 551.22409 733.23727 551.48239 733.47817 551.7837 733.69448 552.12808L734.2571 551.1094C734.02847 550.79647 733.76919 550.5133 733.4793 550.2599 733.1914 550.0059 732.86178 549.77639 732.4903 549.57119 731.4805 549.0134 730.503 548.88748 729.5577 549.19338 728.61367 549.4999 727.8441 550.1919 727.24899 551.2693 726.6454 552.362 726.4709 553.38687 726.72537 554.34378 726.98037 555.3026 727.6306 556.0708 728.67617 556.6483 729.0144 556.83517 729.36447 556.98269 729.7262 557.0908 730.0872 557.2003 730.45809 557.26937 730.83877 557.29806ZM738.54 560.2074C738.5421 560.855 738.6698 561.402 738.92306 561.8484 739.1763 562.29489 739.562 562.6612 740.08029 562.94747 740.77859 563.3331 741.4523 563.3862 742.10147 563.10678 742.74996 562.8285 743.3231 562.2388 743.8209 561.3375L746.0557 557.29159 744.949 556.68026 742.73428 560.6898C742.3796 561.332 742.0023 561.745 741.6025 561.92898 741.2032 562.1149 740.77059 562.0792 740.3046 561.8219 739.734 561.5067 739.3875 561.0679 739.265 560.50546 739.14309 559.94497 739.263 559.3373 739.6247 558.6824L741.7168 554.8949 740.61 554.28359 738.39529 558.2932C738.03848 558.9391 737.66116 559.35379 737.2633 559.5372 736.8654 559.72067 736.4291 559.68118 735.9542 559.4189 735.39126 559.1079 735.0489 558.6706 734.9271 558.1068 734.8066 557.5438 734.92617 556.93679 735.28579 556.2857L737.3778 552.4982 736.27108 551.8869 732.5692 558.58877 733.67599 559.2001 734.25137 558.15847C734.2758 558.7084 734.4096 559.178 734.6528 559.5672 734.89596 559.95639 735.2588 560.28427 735.74136 560.5508 736.22897 560.8201 736.7116 560.9251 737.1892 560.8657 737.66616 560.8076 738.1164 560.5882 738.54 560.2074ZM745.2727 568.5195 746.2895 569.0811 748.7412 557.29049 747.7244 556.7289 745.2727 568.5195ZM753.0587 569.64889 753.6341 568.60726C753.2357 568.59548 752.84689 568.5364 752.4674 568.4301 752.08859 568.3258 751.7191 568.1742 751.35916 567.9754 750.81277 567.6736 750.44918 567.36367 750.2684 567.04556 750.0875 566.7274 750.08987 566.40048 750.2753 566.06478 750.4163 565.80947 750.6247 565.66299 750.9004 565.6253 751.1761 565.58767 751.64578 565.6663 752.30947 565.8613L752.73318 565.9854C753.6068 566.2497 754.29257 566.32028 754.7904 566.1971 755.28829 566.0739 755.6881 565.73916 755.98989 565.1928 756.334 564.5698 756.3601 563.94039 756.06838 563.3044 755.7758 562.6697 755.1987 562.1144 754.3371 561.6384 753.9784 561.44027 753.58499 561.2688 753.15689 561.12399 752.7287 560.97909 752.2611 560.8574 751.7541 560.759L751.1258 561.89639C751.6501 561.90939 752.13876 561.97189 752.5917 562.08377 753.04397 562.19699 753.4641 562.3607 753.8522 562.5751 754.3705 562.8614 754.7197 563.1701 754.9 563.5012 755.08157 563.83309 755.0831 564.1605 754.9048 564.48348 754.73977 564.78219 754.5123 564.9556 754.22256 565.0038 753.93399 565.0527 753.4073 564.9625 752.6426 564.73336L752.2099 564.6118C751.4493 564.37826 750.8349 564.3263 750.36679 564.45596 749.89999 564.58627 749.5234 564.9105 749.2371 565.42886 748.8888 566.05947 748.84359 566.6692 749.1014 567.25808 749.35848 567.84829 749.8981 568.37039 750.72018 568.82449 751.1261 569.0487 751.525 569.22988 751.9169 569.36807 752.30929 569.5081 752.6899 569.60177 753.0587 569.64889ZM755.78628 574.3267 756.803 574.8883 759.25479 563.0977 758.238 562.5361 755.78628 574.3267ZM758.006 575.5528 759.21426 576.22018 761.2999 572.44418 763.2239 578.43496 764.7806 579.2948 762.6463 572.68057 770.0316 570.5348 768.44039 569.6559 761.7727 571.58828 764.1493 567.28567 762.94107 566.6183 758.006 575.5528Z" fill="#daa520"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="square" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M109.30937 77.46562V631.8656"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="square" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M834.70938 77.46562V631.8656"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="square" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M109.30937 77.46562H834.70938"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="square" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M109.30937 631.8656H834.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="0">L</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="16.8" font-family="DejaVuSans"><tspan y="3.59375" x="13.371094 24.035157 34.31367">box</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="49.58789 74.37305 89.64258 104.91211 120.18164 127.81055 150.87297 166.10735 179.30266 186.93157">=100.0pc, </tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="194.56047">n</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="16.8" font-family="DejaVuSans"><tspan y="3.59375" x="209.77141 220.41907 230.69759">hot</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="242.61673 267.4019 282.67143 290.30033 310.24565 335.0308 350.30033">=1.0×10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="16.8" font-family="DejaVuSans"><tspan y="-9.53125" x="379.8761">3</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="399.01393 412.20924">cm</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="16.8" font-family="DejaVuSans"><tspan y="-9.53125" x="449.89439">3</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="461.2393 468.8682">, </tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="16.8" font-family="DejaVuSans"><tspan y="3.59375" x="493.14476 503.8088 514.4565 530.8217">bump</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="546.8178 571.60299 586.8725 594.5014 609.77096 617.39987">=5.0, </tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="625.02877">L</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="16.8" font-family="DejaVuSans"><tspan y="3.59375" x="638.39987 649.0639 659.3424">box</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 87.00938 29.200013)" font-size="24" font-family="DejaVuSans"><tspan y="-.34375" x="669.94088 699.12057 723.9057 739.17526 754.44479">/=256</tspan></text> | |
| <g clip-path="url(#clip_38)"> | |
| <path transform="matrix(.0168,0,0,-.0168,452.8089,19.668763)" d="M106 355H732V272H106V355Z"/> | |
| </g> | |
| <g clip-path="url(#clip_39)"> | |
| <path transform="matrix(.0168,0,0,-.0168,522.8272,19.668763)" d="M106 355H732V272H106V355Z"/> | |
| </g> | |
| <g clip-path="url(#clip_40)"> | |
| <path transform="matrix(.024,0,0,-.024,563.5065,28.856263)" d="M112 0H8L286 729H398L676 0H573L342 632 112 0Z"/> | |
| </g> | |
| <g clip-path="url(#clip_41)"> | |
| <path transform="matrix(.024,0,0,-.024,765.0362,28.856263)" d="M342 632 142 82H542L342 632ZM8 0 286 729H398L676 0H8Z"/> | |
| </g> | |
| <g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" d="M120.50938 456.0656H257.3094C259.44273 456.0656 260.50938 457.1323 260.50938 459.26564V620.66567C260.50938 622.79898 259.44273 623.8656 257.3094 623.8656H120.50938C118.376049 623.8656 117.30937 622.79898 117.30937 620.66567V459.26564C117.30937 457.1323 118.376049 456.0656 120.50938 456.0656Z" fill="#ffffff" fill-opacity=".5"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="1" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#cccccc" stroke-opacity=".5" d="M120.50938 456.0656H257.3094C259.44273 456.0656 260.50938 457.1323 260.50938 459.26564V620.66567C260.50938 622.79898 259.44273 623.8656 257.3094 623.8656H120.50938C118.376049 623.8656 117.30937 622.79898 117.30937 620.66567V459.26564C117.30937 457.1323 118.376049 456.0656 120.50938 456.0656Z"/> | |
| </g> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 129.90938 70.599979)" font-size="10.78" font-family="DejaVuSans"><tspan y="12.719531" x="9.076075 14.692412">sp</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 129.90938 70.599979)" font-size="15.4" font-family="DejaVuSans"><tspan y="10.192968" x="21.95628 27.964386 37.762338 42.65755 55.455797 71.359607 81.157558">(1.0×10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 129.90938 70.599979)" font-size="10.78" font-family="DejaVuSans"><tspan y="4.297656" x="91.10289">6</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 129.90938 70.599979)" font-size="15.4" font-family="DejaVuSans"><tspan y="10.192968" x="98.382549">K</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 129.90938 70.599979)" font-size="15.4" font-family="DejaVuSans"><tspan y="10.192968" x="108.48128">)</tspan></text> | |
| <g clip-path="url(#clip_42)"> | |
| <path transform="matrix(.0154,0,0,-.0154,182.90938,60.02185)" d="M146 547H239L195 320 475 547H584L329 341 512 0H402L254 282 175 219 133 0H40L146 547Z"/> | |
| </g> | |
| <g clip-path="url(#clip_43)"> | |
| <path transform="matrix(.0154,0,0,-.0154,129.90938,80.792949)" d="M146 547H239L195 320 475 547H584L329 341 512 0H402L254 282 175 219 133 0H40L146 547Z"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,129.90938,70.599979)" d="M0 5.078125H114.48937V6.453125H0Z"/> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#dc143c" d="M123.70937 567.39376H139.70938 155.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 107.27185)" font-size="16" font-family="DejaVuSans"><tspan y="-.7046875" x="0 10.1796879 14.390625 24.570313 37.867189 54.390626 64.57031">5.26×10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 107.27185)" font-size="11.2" font-family="DejaVuSans"><tspan y="-6.8296878" x="84.2875">4</tspan></text> | |
| <g clip-path="url(#clip_44)"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,100.44216)" d="M106 355H732V272H106V355Z"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#9acd32" d="M123.70937 543.39376H139.70938 155.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 131.27185)" font-size="16" font-family="DejaVuSans"><tspan y="-.5625" x="0 10.1796879 14.390625 24.570313 37.867189 54.390626 64.57031">5.26×10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 131.27185)" font-size="11.2" font-family="DejaVuSans"><tspan y="-6.6875" x="84.2875">3</tspan></text> | |
| <g clip-path="url(#clip_45)"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,124.58435)" d="M106 355H732V272H106V355Z"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#4682b4" d="M123.70937 519.39376H139.70938 155.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 155.27185)" font-size="16" font-family="DejaVuSans"><tspan y="-.5625" x="0 10.1796879 14.390625 24.570313 37.867189 54.390626 64.57031">5.26×10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 155.27185)" font-size="11.2" font-family="DejaVuSans"><tspan y="-6.6875" x="84.2875">2</tspan></text> | |
| <g clip-path="url(#clip_46)"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,148.58435)" d="M106 355H732V272H106V355Z"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#9932cc" d="M123.70937 495.39375H139.70938 155.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 179.27185)" font-size="16" font-family="DejaVuSans"><tspan y="-.7046875" x="0 10.1796879 14.390625 24.570313 37.867189 54.390626 64.57031">5.26×10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 179.27185)" font-size="11.2" font-family="DejaVuSans"><tspan y="-6.8296878" x="84.2875">1</tspan></text> | |
| <g clip-path="url(#clip_47)"> | |
| <path transform="matrix(.0112,0,0,-.0112,237.0125,172.44217)" d="M106 355H732V272H106V355Z"/> | |
| </g> | |
| <path transform="matrix(1,0,0,-1,0,669.0656)" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#daa520" d="M123.70937 471.39375H139.70938 155.70938"/> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 203.27185)" font-size="16" font-family="DejaVuSans"><tspan y="-.5625" x="0 10.1796879 14.390625 24.570313 37.867189 54.390626 64.57031">5.26×10</tspan></text> | |
| <text xml:space="preserve" transform="matrix(1 0 -0 1 162.10938 203.27185)" font-size="11.2" font-family="DejaVuSans"><tspan y="-6.6875" x="74.90312">0</tspan></text> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment