diff --git a/ccm-sci-publications-dramaticarts/pdl/com/arsdigita/content-types/SciPublicationsPlay.pdl b/ccm-sci-publications-dramaticarts/pdl/com/arsdigita/content-types/SciPublicationsPlay.pdl index 5c734538d..c5de45888 100644 --- a/ccm-sci-publications-dramaticarts/pdl/com/arsdigita/content-types/SciPublicationsPlay.pdl +++ b/ccm-sci-publications-dramaticarts/pdl/com/arsdigita/content-types/SciPublicationsPlay.pdl @@ -32,18 +32,18 @@ object type SciPublicationPlayBundle extends PublicationWithPublisherBundle { reference key (ct_scipublications_play_bundles.bundle_id); } -//Association for first production theater +//Association for first production theatre association { PublicationBundle[0..n] producedPlay = join cms_orgaunit_bundles.bundle_id - to ct_scipublications_play_firstproductiontheather.theater_id, - join ct_scipublications_play_firstproductiontheather.play_id + to ct_scipublications_play_firstproductiontheatre.theatre_id, + join ct_scipublications_play_firstproductiontheatre.play_id to ct_scipublications_play_bundles.bundle_id; GenericOrganizationalUnitBundle[0..n] productionTheater = join ct_scipublications_play_bundles.bundle_id - to ct_scipublications_play_firstproductiontheather.play_id, - join ct_scipublications_play_firstproductiontheather.theather_id + to ct_scipublications_play_firstproductiontheatre.play_id, + join ct_scipublications_play_firstproductiontheatre.theatre_id to cms_orgaunit_bundles.bundle_id; - Integer[0..1] theaterOrder = ct_scipublications_play_productiontheater.theater_order INTEGER; + Integer[0..1] theatreOrder = ct_scipublications_play_productiontheatre.theatre_order INTEGER; } diff --git a/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/SciPublicationsDramaticArtsGlobalisationUtil.java b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/SciPublicationsDramaticArtsGlobalisationUtil.java new file mode 100644 index 000000000..6a11726c8 --- /dev/null +++ b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/SciPublicationsDramaticArtsGlobalisationUtil.java @@ -0,0 +1,16 @@ +package com.arsdigita.cms.contenttypes; + +import com.arsdigita.toolbox.GlobalisationUtil; + +/** + * + * @author Jens Pelzetter + * @version $Id$ + */ +public class SciPublicationsDramaticArtsGlobalisationUtil extends GlobalisationUtil { + + public SciPublicationsDramaticArtsGlobalisationUtil() { + super("com.arsdigita.cms.contenttypes.SciPublicationsDramaticArtsResources"); + } + +} diff --git a/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/SciPublicationsPlayBundle.java b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/SciPublicationsPlayBundle.java index 4417eadbb..1a6d68ca8 100644 --- a/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/SciPublicationsPlayBundle.java +++ b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/SciPublicationsPlayBundle.java @@ -41,8 +41,8 @@ public class SciPublicationsPlayBundle extends PublicationWithPublisherBundle { public static final String BASE_BASE_OBJECT_TYPE = "com.arsdigita.cms.contenttypes.SciPublicationsPlayBundle"; - public static final String PRODUCTION_THEATER = "productionTheater"; - public static final String PRODUCTION_THEATER_ORDER = "theaterOrder"; + public static final String PRODUCTION_THEATER = "productionTheatre"; + public static final String PRODUCTION_THEATER_ORDER = "theatreOrder"; public SciPublicationsPlayBundle(final ContentItem primary) { diff --git a/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsMovieCreate.java b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsMovieCreate.java new file mode 100644 index 000000000..a115c8538 --- /dev/null +++ b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsMovieCreate.java @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2010 Jens Pelzetter + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +package com.arsdigita.cms.contenttypes.ui; + +import com.arsdigita.cms.ContentItem; +import com.arsdigita.cms.ItemSelectionModel; +import com.arsdigita.cms.contenttypes.PublicationBundle; +import com.arsdigita.cms.contenttypes.SciPublicationsMovieBundle; +import com.arsdigita.cms.ui.authoring.CreationSelector; + +/** + * + * @author Jens Pelzetter + * @version $Id$ + */ +public class SciPublicationsMovieCreate extends PublicationCreate { + + public SciPublicationsMovieCreate(final ItemSelectionModel itemModel, + final CreationSelector parent) { + + super(itemModel, parent); + + } + + @Override + public PublicationBundle createBundle(final ContentItem primary) { + + return new SciPublicationsMovieBundle(primary); + + } + +} diff --git a/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsMoviePropertiesStep.java b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsMoviePropertiesStep.java new file mode 100644 index 000000000..316ee8d2b --- /dev/null +++ b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsMoviePropertiesStep.java @@ -0,0 +1,90 @@ +/* + * Copyright (c) 2014 Jens Pelzetter + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package com.arsdigita.cms.contenttypes.ui; + +import com.arsdigita.bebop.Component; +import com.arsdigita.bebop.Label; +import com.arsdigita.cms.ItemSelectionModel; +import com.arsdigita.cms.contenttypes.SciPublicationsDramaticArtsGlobalisationUtil; +import com.arsdigita.cms.ui.authoring.AuthoringKitWizard; +import com.arsdigita.cms.ui.authoring.BasicPageForm; +import com.arsdigita.cms.ui.authoring.SimpleEditStep; +import com.arsdigita.cms.ui.workflow.WorkflowLockedComponentAccess; +import com.arsdigita.toolbox.ui.DomainObjectPropertySheet; + +/** + * + * @author Jens Pelzetter + * @version $Id$ + */ +public class SciPublicationsMoviePropertiesStep extends PublicationPropertiesStep { + + public SciPublicationsMoviePropertiesStep(final ItemSelectionModel itemModel, + final AuthoringKitWizard parent) { + super(itemModel, parent); + } + + public static Component getSciPublicationsMoviePropertySheet( + final ItemSelectionModel itemModel) { + + final DomainObjectPropertySheet sheet = (DomainObjectPropertySheet) PublicationPropertiesStep. + getPublicationPropertySheet(itemModel); + + return sheet; + } + + @Override + protected void addBasicProperties(final ItemSelectionModel itemModel, + final AuthoringKitWizard parent) { + + final SimpleEditStep basicProperties = new SimpleEditStep(itemModel, + parent, + EDIT_SHEET_NAME); + + final BasicPageForm editBasicSheet = new SciPublicationsMoviePropertyForm(itemModel, this); + + final SciPublicationsDramaticArtsGlobalisationUtil globalisationUtil = new SciPublicationsDramaticArtsGlobalisationUtil(); + basicProperties.add(EDIT_SHEET_NAME, + PublicationGlobalizationUtil.globalize( + "publications.ui.publication.edit_basic_sheet"), + new WorkflowLockedComponentAccess(editBasicSheet, itemModel), + editBasicSheet.getSaveCancelSection().getCancelButton()); + + basicProperties.setDisplayComponent(getSciPublicationsMoviePropertySheet(itemModel)); + + getSegmentedPanel().addSegment( + new Label(PublicationGlobalizationUtil.globalize( + "publications.ui.publication.basic_properties"), + basicProperties)); + + } + + @Override + protected void addSteps(final ItemSelectionModel itemModel, + final AuthoringKitWizard parent) { + + super.addSteps(itemModel, parent); + + final SciPublicationsDramaticArtsGlobalisationUtil globalisationUtil = new SciPublicationsDramaticArtsGlobalisationUtil(); + addStep(new SciPublicationsMovieDirectorStep(itemModel, parent), + globalisationUtil.globalise("publications.dramaticarts.ui.director")); + addStep(new SciPublicationsMovieProducationCompanyStep(itemModel, parent), + globalisationUtil.globalise("publications.dramaticarts.ui.producationcompany")); + } +} diff --git a/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsPlayCreate.java b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsPlayCreate.java new file mode 100644 index 000000000..375e8f356 --- /dev/null +++ b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsPlayCreate.java @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2010 Jens Pelzetter + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package com.arsdigita.cms.contenttypes.ui; + +import com.arsdigita.cms.ContentItem; +import com.arsdigita.cms.ItemSelectionModel; +import com.arsdigita.cms.contenttypes.PublicationBundle; +import com.arsdigita.cms.contenttypes.SciPublicationsPlayBundle; +import com.arsdigita.cms.ui.authoring.CreationSelector; + +/** + * + * @author Jens Pelzetter + * @version $Id$ + */ +public class SciPublicationsPlayCreate extends PublicationWithPublisherCreate { + + public SciPublicationsPlayCreate(final ItemSelectionModel itemModel, + final CreationSelector parent) { + super(itemModel, parent); + } + + @Override + public PublicationBundle createBundle(final ContentItem primary) { + return new SciPublicationsPlayBundle(primary); + } + +} diff --git a/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsPlayPropertiesStep.java b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsPlayPropertiesStep.java new file mode 100644 index 000000000..b11288560 --- /dev/null +++ b/ccm-sci-publications-dramaticarts/src/com/arsdigita/cms/contenttypes/ui/SciPublicationsPlayPropertiesStep.java @@ -0,0 +1,100 @@ +/* + * Copyright (c) 2014 Jens Pelzetter + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ +package com.arsdigita.cms.contenttypes.ui; + +import com.arsdigita.bebop.Component; +import com.arsdigita.bebop.Label; +import com.arsdigita.cms.ItemSelectionModel; +import com.arsdigita.cms.contenttypes.SciPublicationsDramaticArtsGlobalisationUtil; +import com.arsdigita.cms.contenttypes.SciPublicationsPlay; +import com.arsdigita.cms.ui.authoring.AuthoringKitWizard; +import com.arsdigita.cms.ui.authoring.BasicPageForm; +import com.arsdigita.cms.ui.authoring.SimpleEditStep; +import com.arsdigita.cms.ui.workflow.WorkflowLockedComponentAccess; +import com.arsdigita.toolbox.ui.DomainObjectPropertySheet; + +/** + * + * @author Jens Pelzetter + * @version $Id$ + */ +public class SciPublicationsPlayPropertiesStep extends PublicationWithPublisherPropertiesStep { + + public SciPublicationsPlayPropertiesStep(final ItemSelectionModel itemModel, + final AuthoringKitWizard parent) { + + super(itemModel, parent); + + } + + public static Component getSciPublicationsPlayPropertySheet( + final ItemSelectionModel itemModel) { + + final DomainObjectPropertySheet sheet = (DomainObjectPropertySheet) PublicationWithPublisherPropertiesStep. + getPublicationWithPublisherPropertySheet(itemModel); + + final SciPublicationsDramaticArtsGlobalisationUtil globalisationUtil + = new SciPublicationsDramaticArtsGlobalisationUtil(); + + sheet.add(globalisationUtil.globalise( + "publications.dramaticarts.ui.play.first_production_year"), + SciPublicationsPlay.FIRST_PRODUCTION_YEAR); + + return sheet; + + } + + @Override + protected void addBasicProperties(final ItemSelectionModel itemModel, + final AuthoringKitWizard parent) { + + final SimpleEditStep basicProperties = new SimpleEditStep(itemModel, + parent, + EDIT_SHEET_NAME); + + final BasicPageForm editBasicSheet = new SciPublicationsPlayPropertyForm(itemModel, this); + + basicProperties.add(EDIT_SHEET_NAME, + PublicationGlobalizationUtil.globalize( + "publications.ui.publication.edit_basic_sheet"), + new WorkflowLockedComponentAccess(editBasicSheet, itemModel), + editBasicSheet.getSaveCancelSection().getCancelButton()); + + basicProperties.setDisplayComponent(getSciPublicationsPlayPropertySheet(itemModel)); + + getSegmentedPanel().addSegment(new Label(PublicationGlobalizationUtil.globalize( + "publications.ui.publication.basic_properties"), + basicProperties)); + + } + + @Override + public void addSteps(final ItemSelectionModel itemModel, + final AuthoringKitWizard parent) { + + super.addSteps(itemModel, parent); + + final SciPublicationsDramaticArtsGlobalisationUtil globalisationUtil = new SciPublicationsDramaticArtsGlobalisationUtil(); + addStep(new SciPublicationsPlayProducationTheaterStep(itemModel, parent), + globalisationUtil. + globalise("publications.dramaticarts.ui.first_producation_theater")); + + } + +} diff --git a/ccm-sci-publications/src/com/arsdigita/cms/contenttypes/ui/PublicationPropertiesStep.java b/ccm-sci-publications/src/com/arsdigita/cms/contenttypes/ui/PublicationPropertiesStep.java index eb30900df..65475b810 100644 --- a/ccm-sci-publications/src/com/arsdigita/cms/contenttypes/ui/PublicationPropertiesStep.java +++ b/ccm-sci-publications/src/com/arsdigita/cms/contenttypes/ui/PublicationPropertiesStep.java @@ -35,6 +35,7 @@ import com.arsdigita.cms.ui.workflow.WorkflowLockedComponentAccess; import com.arsdigita.cms.util.GlobalizationUtil; import com.arsdigita.domain.DomainObject; import com.arsdigita.domain.DomainService; +import com.arsdigita.globalization.GlobalizedMessage; import java.text.DateFormat; /** @@ -77,19 +78,22 @@ public class PublicationPropertiesStep extends SimpleEditStep { sheet.add(PublicationGlobalizationUtil.globalize( "publications.ui.publication.abstract"), Publication.ABSTRACT); - //new PreFormattedTextFormatter()); + //new PreFormattedTextFormatter()); sheet.add(PublicationGlobalizationUtil.globalize( "publications.ui.publication.misc"), Publication.MISC); if (Publication.getConfig().getEnableFirstPublishedProperty()) { - sheet.add(PublicationGlobalizationUtil.globalize("publications.ui.publication.first_published"), + sheet.add(PublicationGlobalizationUtil.globalize( + "publications.ui.publication.first_published"), Publication.FIRST_PUBLISHED); } if (Publication.getConfig().getEnableLanguageProperty()) { - sheet.add(PublicationGlobalizationUtil.globalize("publications.ui.publication.language"), - Publication.LANG); + sheet. + add(PublicationGlobalizationUtil.globalize( + "publications.ui.publication.language"), + Publication.LANG); } if (!ContentSection.getConfig().getHideLaunchDate()) { @@ -97,19 +101,19 @@ public class PublicationPropertiesStep extends SimpleEditStep { "cms.ui.authoring.page_launch_date"), ContentPage.LAUNCH_DATE, new DomainObjectPropertySheet.AttributeFormatter() { - public String format(DomainObject item, - String attribute, - PageState state) { - ContentPage page = (ContentPage) item; - if (page.getLaunchDate() != null) { - return DateFormat.getDateInstance(DateFormat.LONG). - format(page.getLaunchDate()); - } else { - return (String) ContenttypesGlobalizationUtil.globalize( - "cms.ui.unknown").localize(); - } - } - }); + public String format(DomainObject item, + String attribute, + PageState state) { + ContentPage page = (ContentPage) item; + if (page.getLaunchDate() != null) { + return DateFormat.getDateInstance(DateFormat.LONG). + format(page.getLaunchDate()); + } else { + return (String) ContenttypesGlobalizationUtil.globalize( + "cms.ui.unknown").localize(); + } + } + }); } return sheet; @@ -128,10 +132,11 @@ public class PublicationPropertiesStep extends SimpleEditStep { BasicPageForm editBasicSheet = new PublicationPropertyForm(itemModel, this); basicProperties.add(EDIT_SHEET_NAME, (String) PublicationGlobalizationUtil. - globalize("publications.ui.publication.edit_basic_sheet"). - localize(), new WorkflowLockedComponentAccess(editBasicSheet, - itemModel), editBasicSheet. - getSaveCancelSection().getCancelButton()); + globalize("publications.ui.publication.edit_basic_sheet"). + localize(), new WorkflowLockedComponentAccess(editBasicSheet, + itemModel), + editBasicSheet. + getSaveCancelSection().getCancelButton()); basicProperties.setDisplayComponent(getPublicationPropertySheet( itemModel)); @@ -152,10 +157,15 @@ public class PublicationPropertiesStep extends SimpleEditStep { } protected void addStep(SimpleEditStep step, String labelKey) { - segmentedPanel.addSegment( - new Label((String) PublicationGlobalizationUtil.globalize( - labelKey).localize()), - step); + addStep(step, PublicationGlobalizationUtil.globalize(labelKey)); +// segmentedPanel.addSegment( +// new Label((String) PublicationGlobalizationUtil.globalize( +// labelKey).localize()), +// step); + } + + protected void addStep(SimpleEditStep step, GlobalizedMessage label) { + segmentedPanel.addSegment(new Label(label), step); } protected boolean isSeriesStepEnabled() { diff --git a/doc/PDLEntities.eps b/doc/PDLEntities.eps index 0ea69f404..ab5336925 100644 --- a/doc/PDLEntities.eps +++ b/doc/PDLEntities.eps @@ -1,14 +1,14 @@ %!PS-Adobe-3.0 EPSF-3.0 %%Creator: PlantUML v7985 %%Title: noTitle -%%CreationDate: Sun Mar 23 13:48:43 CET 2014 -%%BoundingBox: 0 0 13602 1168 +%%CreationDate: Tue Mar 25 16:17:53 CET 2014 +%%BoundingBox: 0 0 33301 1184 %%ColorUsage: Color %%Origin: 0 0 %%EndComments gsave -0 1168 translate +0 1184 translate 1 -1 scale /simplerect { newpath moveto 1 index 0 rlineto @@ -37,7 +37,7 @@ pop pop pop pop pop -1.2656 0 rlineto closepath } def -/P$j { +/P$i { 0 0.6875 rlineto -5.7188 0 rlineto 0.0938 0.8594 0.625 1.2969 rquadto @@ -68,7 +68,7 @@ closepath 0 -10.2031 rlineto closepath } def -/P$i { +/P$n { 2.4531 0 rlineto 0 5.7969 rlineto 2.8125 -2.8125 rlineto @@ -92,7 +92,7 @@ closepath -3 -7.6563 rlineto closepath } def -/P$g { +/P$m { 0 -4.6719 rlineto 2.4688 0 rlineto 0 0.7656 rlineto @@ -115,7 +115,7 @@ closepath -0.6953 -0.8125 -0.6953 -2.375 rquadto closepath } def -/P$2b { +/P$2f { 1.1406 0 rlineto 2.0469 5.5 rlineto 2.0625 -5.5 rlineto @@ -157,7 +157,7 @@ closepath 0.6094 0.3828 0.9219 1.0703 rquadto closepath } def -/P$2r { +/P$2t { -3.3438 -8.75 rlineto 1.2344 0 rlineto 2.7813 7.3594 rlineto @@ -167,7 +167,7 @@ closepath -1.3438 0 rlineto closepath } def -/P$1g { +/P$19 { 0 1.1875 0.4844 1.8672 rquadto 0.4844 0.6797 1.3438 0.6797 rquadto 0.8594 0 1.3516 -0.6797 rquadto @@ -178,7 +178,7 @@ closepath -0.4844 0.6719 -0.4844 1.8594 rquadto closepath } def -/P$1y { +/P$1e { 0 3.4844 rlineto -1.0781 0 rlineto 0 -9.0625 rlineto @@ -194,7 +194,7 @@ closepath -0.5156 -0.2891 -0.8594 -0.8672 rquadto closepath } def -/P$2c { +/P$2g { 0 -1.1719 -0.4844 -1.8125 rquadto -0.4844 -0.6406 -1.3594 -0.6406 rquadto -0.8594 0 -1.3438 0.6406 rquadto @@ -205,7 +205,7 @@ closepath 0.4844 -0.6406 0.4844 -1.8125 rquadto closepath } def -/P$2n { +/P$2q { 2.4375 0 rlineto 2.5469 0 3.7344 1.0547 rquadto 1.1875 1.0547 1.1875 3.3047 rquadto @@ -215,7 +215,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$29 { +/P$2d { 0 3.9688 rlineto -1.0781 0 rlineto 0 -3.9219 rlineto @@ -245,7 +245,7 @@ closepath 0 -1.9844 rlineto closepath } def -/P$2g { +/P$2j { 1.1875 0 rlineto 0 7.75 rlineto 4.2656 0 rlineto @@ -254,7 +254,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$p { +/P$l { 0.5 -0.6719 1.1172 -0.9922 rquadto 0.6172 -0.3203 1.4141 -0.3203 rquadto 1.4219 0 2.3281 1.125 rquadto @@ -270,7 +270,7 @@ closepath 0 4.1094 rlineto closepath } def -/P$h { +/P$g { 0 4.6563 rlineto -2.4688 0 rlineto 0 -0.7656 rlineto @@ -292,7 +292,7 @@ closepath 0.6875 0.8125 0.6875 2.375 rquadto closepath } def -/P$1p { +/P$1f { 0 -1.1875 -0.4922 -1.8594 rquadto -0.4922 -0.6719 -1.3359 -0.6719 rquadto -0.8594 0 -1.3516 0.6719 rquadto @@ -303,7 +303,7 @@ closepath 0.4922 -0.6797 0.4922 -1.8672 rquadto closepath } def -/P$2h { +/P$2k { 5.125 0 rlineto 0 0.9844 rlineto -4.0469 4.7188 rlineto @@ -316,7 +316,7 @@ closepath 0 -0.8594 rlineto closepath } def -/P$1s { +/P$1r { 0 0.5156 rlineto -4.9688 0 rlineto 0.0781 1.125 0.6797 1.7031 rquadto @@ -334,7 +334,7 @@ closepath 0.7734 0.8516 0.7734 2.3203 rquadto closepath } def -/P$1j { +/P$1y { -0.1875 -0.0938 -0.3984 -0.1484 rquadto -0.2109 -0.0547 -0.4766 -0.0547 rquadto -0.9063 0 -1.3984 0.5938 rquadto @@ -351,7 +351,7 @@ closepath 0.0156 1.0938 rlineto closepath } def -/P$2k { +/P$2n { 1.0781 0 rlineto 0 5.3906 rlineto 3.2188 -2.8281 rlineto @@ -365,7 +365,7 @@ closepath 0 -9.125 rlineto closepath } def -/P$12 { +/P$1t { 0 3.2031 rlineto 1.9063 0 rlineto 0.9531 0 1.4141 -0.3984 rquadto @@ -392,7 +392,7 @@ closepath -3.4063 -7.9531 rlineto closepath } def -/P$2q { +/P$2s { 5.0313 0 rlineto 0 1 rlineto -3.8438 0 rlineto @@ -420,7 +420,7 @@ closepath 2.8906 -3.9219 rlineto closepath } def -/P$10 { +/P$12 { 2.6406 0 rlineto 0 8.2188 rlineto 4.6094 0 rlineto @@ -429,7 +429,7 @@ closepath 0 -10.2031 rlineto closepath } def -/P$2o { +/P$15 { 1.1875 0 rlineto 1.8438 7.3906 rlineto 1.8281 -7.3906 rlineto @@ -445,7 +445,7 @@ closepath -2.1875 -8.75 rlineto closepath } def -/P$11 { +/P$13 { -0.5781 0.2969 -1.2188 0.4453 rquadto -0.6406 0.1484 -1.3438 0.1484 rquadto -2.5 0 -3.8203 -1.6484 rquadto @@ -466,7 +466,7 @@ closepath 0 2.7188 rlineto closepath } def -/P$1e { +/P$1x { 0 0 rlineto closepath } def @@ -502,7 +502,7 @@ closepath 1.875 0 rlineto closepath } def -/P$1q { +/P$22 { 0.3438 -0.5938 0.8594 -0.875 rquadto 0.5156 -0.2813 1.2344 -0.2813 rquadto 1.2031 0 1.9531 0.9453 rquadto @@ -518,7 +518,7 @@ closepath 0 3.5625 rlineto closepath } def -/P$26 { +/P$2a { 0.375 0.1406 0.7344 0.5625 rquadto 0.3594 0.4219 0.7344 1.1563 rquadto 1.2031 2.3906 rlineto @@ -537,7 +537,7 @@ closepath -0.3828 0.5469 -1.1172 0.75 rquadto closepath } def -/P$1x { +/P$1m { 1.4063 0 2.2109 0.9141 rquadto 0.8047 0.9141 0.8047 2.5234 rquadto 0 1.6094 -0.8047 2.5313 rquadto @@ -548,7 +548,7 @@ closepath 0.8047 -0.9141 2.2109 -0.9141 rquadto closepath } def -/P$2i { +/P$2l { 1.1875 0 rlineto 0 3.7031 rlineto 3.9219 -3.7031 rlineto @@ -562,7 +562,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$1o { +/P$21 { 1.8281 0 2.9297 1.2344 rquadto 1.1016 1.2344 1.1016 3.3125 rquadto 0 2.0625 -1.1016 3.2969 rquadto @@ -573,7 +573,7 @@ closepath 1.1094 -1.2344 2.9531 -1.2344 rquadto closepath } def -/P$z { +/P$11 { -0.7188 0.375 -1.5078 0.5703 rquadto -0.7891 0.1953 -1.6328 0.1953 rquadto -2.5625 0 -4.0469 -1.4297 rquadto @@ -594,7 +594,7 @@ closepath 0 2.1094 rlineto closepath } def -/P$1m { +/P$1z { 0 1.1563 rlineto -0.6719 -0.3125 -1.2734 -0.4766 rquadto -0.6016 -0.1641 -1.1484 -0.1641 rquadto @@ -625,7 +625,7 @@ closepath 0.6328 0.1094 1.3047 0.3281 rquadto closepath } def -/P$1a { +/P$1h { 0 1.0156 rlineto -0.4688 -0.2656 -0.9219 -0.3906 rquadto -0.4531 -0.125 -0.9219 -0.125 rquadto @@ -646,7 +646,7 @@ closepath 0.4766 0.1016 0.9297 0.3047 rquadto closepath } def -/P$2m { +/P$2p { 0 6.8125 rlineto 1.4375 0 rlineto 1.8125 0 2.6484 -0.8203 rquadto @@ -656,7 +656,7 @@ closepath -1.4375 0 rlineto closepath } def -/P$14 { +/P$1v { 3.0313 0 rlineto 1.3594 0 2.0859 0.5625 rquadto 0.7266 0.5625 0.7266 1.5938 rquadto @@ -670,7 +670,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$1n { +/P$20 { -1.2969 0 -2.0547 0.9609 rquadto -0.7578 0.9609 -0.7578 2.6328 rquadto 0 1.6406 0.7578 2.6016 rquadto @@ -681,7 +681,7 @@ closepath -0.7578 -0.9609 -2.0391 -0.9609 rquadto closepath } def -/P$n { +/P$h { 2.375 0 rlineto 1.2813 5.2813 rlineto 1.2969 -5.2813 rlineto @@ -697,7 +697,7 @@ closepath -2.0156 -7.6563 rlineto closepath } def -/P$24 { +/P$1q { -0.4531 1.1719 -0.8906 1.5313 rquadto -0.4375 0.3594 -1.1563 0.3594 rquadto -0.8594 0 rlineto @@ -714,7 +714,7 @@ closepath -2.8906 7.1719 rlineto closepath } def -/P$1t { +/P$1s { -0.0156 -0.875 -0.5 -1.4063 rquadto -0.4844 -0.5313 -1.2813 -0.5313 rquadto -0.9063 0 -1.4453 0.5156 rquadto @@ -722,7 +722,7 @@ closepath 3.8438 -0.0156 rlineto closepath } def -/P$1w { +/P$1l { -0.8594 0 -1.3672 0.6797 rquadto -0.5078 0.6797 -0.5078 1.8516 rquadto 0 1.1875 0.5 1.8594 rquadto @@ -733,7 +733,7 @@ closepath -0.5078 -0.6875 -1.3672 -0.6875 rquadto closepath } def -/P$o { +/P$k { 0.7813 0 1.1953 -0.5781 rquadto 0.4141 -0.5781 0.4141 -1.6719 rquadto 0 -1.0938 -0.4141 -1.6641 rquadto @@ -744,14 +744,14 @@ closepath 0.4219 0.5781 1.2031 0.5781 rquadto closepath } def -/P$2t { +/P$2v { 1.2344 0 rlineto 0 1.4844 rlineto -1.2344 0 rlineto 0 -1.4844 rlineto closepath } def -/P$1v { +/P$25 { 0 -2.3438 rlineto -1.9375 0 rlineto 0 -0.9844 rlineto @@ -776,7 +776,7 @@ closepath 0.4922 -0.1094 0.8828 -0.3438 rquadto closepath } def -/P$2u { +/P$2w { 1.5625 1.7031 rlineto -1.4375 0 rlineto -1.2969 -1.4063 rlineto @@ -822,14 +822,14 @@ closepath 0.9141 0.8203 0.9141 2.6484 rquadto closepath } def -/P$2e { +/P$2i { 1.1875 0 rlineto 0 8.75 rlineto -1.1875 0 rlineto 0 -8.75 rlineto closepath } def -/P$2v { +/P$2x { 1.2813 0 rlineto 2.1719 3.25 rlineto 2.1875 -3.25 rlineto @@ -865,6 +865,22 @@ closepath 0.5859 0.1094 1.1641 0.3125 rquadto closepath } def +/P$2y { +-0.3438 0.5781 -0.8594 0.8672 rquadto +-0.5156 0.2891 -1.25 0.2891 rquadto +-1.1875 0 -1.9375 -0.9531 rquadto +-0.75 -0.9531 -0.75 -2.5 rquadto +0 -1.5469 0.75 -2.4922 rquadto +0.75 -0.9453 1.9375 -0.9453 rquadto +0.7344 0 1.25 0.2813 rquadto +0.5156 0.2813 0.8594 0.875 rquadto +0 -1 rlineto +1.0781 0 rlineto +0 9.0625 rlineto +-1.0781 0 rlineto +0 -3.4844 rlineto +closepath +} def /P$q { 0 4.0156 rlineto -2.4531 0 rlineto @@ -881,7 +897,18 @@ closepath -0.6172 -0.3203 -1.1172 -0.9922 rquadto closepath } def -/P$1z { +/P$z { +-0.7656 0 -1.1797 0.5703 rquadto +-0.4141 0.5703 -0.4141 1.6641 rquadto +0 1.0938 0.4141 1.6719 rquadto +0.4141 0.5781 1.1797 0.5781 rquadto +0.7969 0 1.2109 -0.5781 rquadto +0.4141 -0.5781 0.4141 -1.6719 rquadto +0 -1.0938 -0.4141 -1.6641 rquadto +-0.4141 -0.5703 -1.2109 -0.5703 rquadto +closepath +} def +/P$1d { 0 3.9688 rlineto -1.0781 0 rlineto 0 -3.9219 rlineto @@ -911,7 +938,7 @@ closepath 0.4141 0.5781 1.1797 0.5781 rquadto closepath } def -/P$1f { +/P$18 { 0 -3.5625 rlineto 1.0781 0 rlineto 0 9.125 rlineto @@ -927,7 +954,7 @@ closepath 0.5156 0.2813 0.8594 0.875 rquadto closepath } def -/P$m { +/P$p { 6.6875 0 rlineto 0 1.7031 rlineto -4.0313 4.2031 rlineto @@ -964,7 +991,7 @@ closepath 0 -0.5313 rlineto closepath } def -/P$13 { +/P$1u { 0 2.6406 rlineto 1.75 0 rlineto 0.875 0 1.2969 -0.3281 rquadto @@ -992,7 +1019,7 @@ closepath -0.4297 -0.5625 -1.1953 -0.5625 rquadto closepath } def -/P$19 { +/P$1c { 1.0781 0 rlineto 0 1.375 rlineto -1.0781 0 rlineto @@ -1010,7 +1037,7 @@ closepath 1.1172 -1.0703 3.0859 -1.0703 rquadto closepath } def -/P$2a { +/P$2e { 6.875 0 rlineto 0 0.9063 rlineto -5.5313 6.8438 rlineto @@ -1040,7 +1067,7 @@ closepath 0 2.2031 rlineto closepath } def -/P$1l { +/P$14 { 0 1.25 rlineto -0.6094 -0.5625 -1.2813 -0.8359 rquadto -0.6719 -0.2734 -1.4375 -0.2734 rquadto @@ -1092,7 +1119,7 @@ closepath 0.7422 0.1016 1.6172 0.3203 rquadto closepath } def -/P$k { +/P$j { 0 -0.7031 -0.4063 -1.1328 rquadto -0.4063 -0.4297 -1.0625 -0.4297 rquadto -0.7031 0 -1.1484 0.3984 rquadto @@ -1100,7 +1127,7 @@ closepath 3.1719 0 rlineto closepath } def -/P$22 { +/P$27 { 0 3.2969 rlineto 1.4844 0 rlineto 0.8281 0 1.2813 -0.4297 rquadto @@ -1110,7 +1137,7 @@ closepath -1.4844 0 rlineto closepath } def -/P$15 { +/P$1i { -1.2969 0 -1.8047 0.2969 rquadto -0.5078 0.2969 -0.5078 1.0156 rquadto 0 0.5781 0.3828 0.9141 rquadto @@ -1121,7 +1148,7 @@ closepath -1.0781 0 rlineto closepath } def -/P$16 { +/P$1j { 0 3.75 rlineto -1.0781 0 rlineto 0 -1 rlineto @@ -1144,7 +1171,7 @@ closepath 0.7031 0.7344 0.7031 2.2344 rquadto closepath } def -/P$2l { +/P$2o { 0 0.9063 rlineto -1.0313 0 rlineto -0.5781 0 -0.8047 0.2344 rquadto @@ -1165,13 +1192,13 @@ closepath 1.0156 0 rlineto closepath } def -/P$1b { +/P$16 { -1.6094 4.3438 rlineto 3.2188 0 rlineto -1.6094 -4.3438 rlineto closepath } def -/P$1h { +/P$1k { 0 1.8594 rlineto 2.2188 0 rlineto 0 0.8438 rlineto @@ -1192,7 +1219,7 @@ closepath 1.0938 0 rlineto closepath } def -/P$1r { +/P$23 { 1.0781 0 rlineto 0 6.6875 rlineto 0 1.25 -0.4766 1.8125 rquadto @@ -1205,7 +1232,7 @@ closepath 0 -6.6875 rlineto closepath } def -/P$2s { +/P$2u { 1.1875 0 rlineto 0 8.1406 rlineto 0 1.5781 -0.6016 2.2969 rquadto @@ -1218,14 +1245,14 @@ closepath 0 -8.1406 rlineto closepath } def -/P$l { +/P$o { 2.4531 0 rlineto 0 10.6406 rlineto -2.4531 0 rlineto 0 -10.6406 rlineto closepath } def -/P$1k { +/P$1g { 1.0781 0 rlineto 0 9.125 rlineto -1.0781 0 rlineto @@ -1253,6 +1280,17 @@ closepath 2.4375 0 rlineto closepath } def +/P$17 { +1.3438 0 rlineto +3.3281 8.75 rlineto +-1.2344 0 rlineto +-0.7969 -2.25 rlineto +-3.9375 0 rlineto +-0.7969 2.25 rlineto +-1.25 0 rlineto +3.3438 -8.75 rlineto +closepath +} def /P$u { 0 4.6563 rlineto -2.4688 0 rlineto @@ -1275,18 +1313,7 @@ closepath 0.6875 0.8125 0.6875 2.375 rquadto closepath } def -/P$1c { -1.3438 0 rlineto -3.3281 8.75 rlineto --1.2344 0 rlineto --0.7969 -2.25 rlineto --3.9375 0 rlineto --0.7969 2.25 rlineto --1.25 0 rlineto -3.3438 -8.75 rlineto -closepath -} def -/P$1i { +/P$1p { 7.3906 0 rlineto 0 1 rlineto -3.0938 0 rlineto @@ -1297,7 +1324,7 @@ closepath 0 -1 rlineto closepath } def -/P$28 { +/P$2c { -2.375 3.1875 rlineto 2.4844 3.375 rlineto -1.2656 0 rlineto @@ -1312,7 +1339,7 @@ closepath 1.2813 0 rlineto closepath } def -/P$20 { +/P$26 { 5.5313 0 rlineto 0 1 rlineto -4.3438 0 rlineto @@ -1327,7 +1354,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$2f { +/P$1n { 1.1875 0 rlineto 0 3.5938 rlineto 4.2969 0 rlineto @@ -1342,7 +1369,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$2j { +/P$2m { 1.7656 0 rlineto 2.2344 5.9531 rlineto 2.25 -5.9531 rlineto @@ -1358,7 +1385,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$2p { +/P$2r { 1.0781 0 rlineto 1.3594 5.125 rlineto 1.3281 -5.125 rlineto @@ -1374,7 +1401,7 @@ closepath -1.7188 -6.5625 rlineto closepath } def -/P$2d { +/P$2h { 0 1.6719 -0.7422 2.4922 rquadto -0.7422 0.8203 -2.2891 0.8203 rquadto -0.5625 0 -1.0703 -0.0859 rquadto @@ -1398,13 +1425,29 @@ closepath 0 5.75 rlineto closepath } def -/P$18 { +/P$1b { 1.0781 0 rlineto 0 6.5625 rlineto -1.0781 0 rlineto 0 -6.5625 rlineto closepath } def +/P$10 { +-0.5156 0.6719 -1.125 0.9922 rquadto +-0.6094 0.3203 -1.4063 0.3203 rquadto +-1.4063 0 -2.3203 -1.125 rquadto +-0.9141 -1.125 -0.9141 -2.9063 rquadto +0 -1.7656 0.9141 -2.8828 rquadto +0.9141 -1.1172 2.3203 -1.1172 rquadto +0.7969 0 1.4063 0.3125 rquadto +0.6094 0.3125 1.125 1 rquadto +0 -1.1406 rlineto +2.4531 0 rlineto +0 10.5625 rlineto +-2.4531 0 rlineto +0 -4.0156 rlineto +closepath +} def /P$r { -0.7813 0 -1.2031 0.5781 rquadto -0.4219 0.5781 -0.4219 1.6563 rquadto @@ -1416,7 +1459,7 @@ closepath -0.4141 -0.5703 -1.1953 -0.5703 rquadto closepath } def -/P$25 { +/P$29 { 1.5938 0 rlineto 3.8906 7.3125 rlineto 0 -7.3125 rlineto @@ -1445,7 +1488,7 @@ closepath 0.6094 0.3203 1.125 0.9922 rquadto closepath } def -/P$23 { +/P$28 { 2.6719 0 rlineto 1.4844 0 2.2344 0.6641 rquadto 0.75 0.6641 0.75 1.9453 rquadto @@ -1457,7 +1500,7 @@ closepath 0 -8.75 rlineto closepath } def -/P$21 { +/P$1a { 0.4063 -0.7344 0.9688 -1.0781 rquadto 0.5625 -0.3438 1.3281 -0.3438 rquadto 1.0313 0 1.5859 0.7188 rquadto @@ -1494,7 +1537,7 @@ closepath 0 -7.6563 rlineto closepath } def -/P$27 { +/P$2b { 0 3.1094 rlineto 1.4844 0 rlineto 0.8594 0 1.2969 -0.3984 rquadto @@ -1504,7 +1547,7 @@ closepath -1.4844 0 rlineto closepath } def -/P$17 { +/P$1o { 0 1.0313 rlineto -0.4531 -0.2344 -0.9453 -0.3516 rquadto -0.4922 -0.1172 -1.0234 -0.1172 rquadto @@ -1535,7 +1578,7 @@ closepath 0.5313 0.0859 0.9688 0.2578 rquadto closepath } def -/P$1d { +/P$1w { 0 -3.9688 rlineto 1.0781 0 rlineto 0 3.9375 rlineto @@ -1554,7 +1597,7 @@ closepath -0.5859 -0.7031 -0.5859 -2.0625 rquadto closepath } def -/P$1u { +/P$24 { 1.1875 0 rlineto 0 5.3125 rlineto 0 1.4063 0.5078 2.0234 rquadto @@ -1573,30638 +1616,54040 @@ closepath } def 0.7843 0.7843 0.7843 setrgbcolor newpath -2038 307 moveto +24775 307 moveto +164 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-175 0 rlineto +0 -100 rlineto +24775 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +24775.5 307.5 moveto +163 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-174 0 rlineto +0 -99 rlineto +24775.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +24776 308 moveto +162 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-173 0 rlineto +0 -98 rlineto +24776 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +24776.5 308.5 moveto +161 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-172 0 rlineto +0 -97 rlineto +24776.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +24777 309 moveto +160 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-171 0 rlineto +0 -96 rlineto +24777 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +24777.5 309.5 moveto +159 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-170 0 rlineto +0 -95 rlineto +24777.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +24778 310 moveto +158 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-169 0 rlineto +0 -94 rlineto +24778 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +24772 304 moveto +164 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-175 0 rlineto +0 -100 rlineto +24772 304 lineto +closepath eofill +1 setlinewidth +0 0 0 setrgbcolor +newpath +24772 304 moveto +164 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-175 0 rlineto +0 -100 rlineto +24772 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +24772 326.2969 moveto +171 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24782.3594 313.5781 moveto +P$0 +24788.8125 314.9063 moveto +P$1 +24788.8125 313.1563 moveto +P$2 +24802.2656 314.6094 moveto +P$3 +24809.4219 318.3594 moveto +P$4 +24817.6094 317.5469 moveto +P$5 +24821.3438 316.625 moveto +P$6 +24828.8594 315.4219 moveto +P$7 +24836.1563 313.5781 moveto +P$8 +24844.3906 314.4688 moveto +P$9 +24842.7656 319.4219 moveto +P$a +24849.1719 313.3438 moveto +P$b +24849.1719 310.3594 moveto +P$c +24858.3906 319.7031 moveto +P$d +24856.7656 314.9375 moveto +P$e +24863.1719 313.3438 moveto +P$b +24863.1719 310.3594 moveto +P$c +24869.8438 311.1719 moveto +P$f +24876.6094 317.5469 moveto +P$5 +24880.3438 316.625 moveto +P$6 +24882.4219 318.3594 moveto +P$4 +24890.6094 317.5469 moveto +P$5 +24894.3438 316.625 moveto +P$6 +24901.3906 314.4688 moveto +P$9 +24899.7656 319.4219 moveto +P$a +24913.2656 314.6094 moveto +P$3 +24920.1719 313.3438 moveto +P$b +24920.1719 310.3594 moveto +P$c +24931.875 316.3438 moveto +P$g +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +25571 183 moveto +151 0 rlineto +7 22.2969 rlineto +367 0 rlineto +0 77.7031 rlineto +-525 0 rlineto +0 -100 rlineto +25571 183 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +25571.5 183.5 moveto +151 0 rlineto +7 22.2969 rlineto +366 0 rlineto +0 76.7031 rlineto +-524 0 rlineto +0 -99 rlineto +25571.5 183.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +25572 184 moveto +151 0 rlineto +7 22.2969 rlineto +365 0 rlineto +0 75.7031 rlineto +-523 0 rlineto +0 -98 rlineto +25572 184 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +25572.5 184.5 moveto +151 0 rlineto +7 22.2969 rlineto +364 0 rlineto +0 74.7031 rlineto +-522 0 rlineto +0 -97 rlineto +25572.5 184.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +25573 185 moveto +151 0 rlineto +7 22.2969 rlineto +363 0 rlineto +0 73.7031 rlineto +-521 0 rlineto +0 -96 rlineto +25573 185 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +25573.5 185.5 moveto +151 0 rlineto +7 22.2969 rlineto +362 0 rlineto +0 72.7031 rlineto +-520 0 rlineto +0 -95 rlineto +25573.5 185.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +25574 186 moveto +151 0 rlineto +7 22.2969 rlineto +361 0 rlineto +0 71.7031 rlineto +-519 0 rlineto +0 -94 rlineto +25574 186 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +25568 180 moveto +151 0 rlineto +7 22.2969 rlineto +367 0 rlineto +0 77.7031 rlineto +-525 0 rlineto +0 -100 rlineto +25568 180 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25568 180 moveto +151 0 rlineto +7 22.2969 rlineto +367 0 rlineto +0 77.7031 rlineto +-525 0 rlineto +0 -100 rlineto +25568 180 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25568 202.2969 moveto +158 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25578.3594 189.5781 moveto +P$0 +25584.8125 190.9063 moveto +P$1 +25584.8125 189.1563 moveto +P$2 +25598.2656 190.6094 moveto +P$3 +25605.4219 194.3594 moveto +P$4 +25613.6094 193.5469 moveto +P$5 +25617.3438 192.625 moveto +P$6 +25624.8594 191.4219 moveto +P$7 +25632.1563 189.5781 moveto +P$8 +25640.3906 190.4688 moveto +P$9 +25638.7656 195.4219 moveto +P$a +25645.1719 189.3438 moveto +P$b +25645.1719 186.3594 moveto +P$c +25654.3906 195.7031 moveto +P$d +25652.7656 190.9375 moveto +P$e +25659.1719 189.3438 moveto +P$b +25659.1719 186.3594 moveto +P$c +25665.8438 187.1719 moveto +P$f +25672.6094 193.5469 moveto +P$5 +25676.3438 192.625 moveto +P$6 +25678.4219 194.3594 moveto +P$4 +25682.5 189.3438 moveto +P$h +25704.8125 193.1563 moveto +P$i +25702.2969 192.3438 moveto +P$j +25711.25 195.4219 moveto +P$k +25709.625 190.4688 moveto +P$l +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +13281 431 moveto 180 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -191 0 rlineto 0 -100 rlineto -2038 307 lineto +13281 431 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -2038.5 307.5 moveto +13281.5 431.5 moveto 179 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -190 0 rlineto 0 -99 rlineto -2038.5 307.5 lineto +13281.5 431.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -2039 308 moveto +13282 432 moveto 178 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -189 0 rlineto 0 -98 rlineto -2039 308 lineto +13282 432 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -2039.5 308.5 moveto +13282.5 432.5 moveto 177 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -188 0 rlineto 0 -97 rlineto -2039.5 308.5 lineto +13282.5 432.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -2040 309 moveto +13283 433 moveto 176 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -187 0 rlineto 0 -96 rlineto -2040 309 lineto +13283 433 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -2040.5 309.5 moveto +13283.5 433.5 moveto 175 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -186 0 rlineto 0 -95 rlineto -2040.5 309.5 lineto +13283.5 433.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -2041 310 moveto +13284 434 moveto 174 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -185 0 rlineto 0 -94 rlineto -2041 310 lineto +13284 434 lineto closepath eofill 1 1 1 setrgbcolor newpath -2035 304 moveto +13278 428 moveto 180 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -191 0 rlineto 0 -100 rlineto -2035 304 lineto +13278 428 lineto closepath eofill -1 setlinewidth +2.0 setlinewidth 0 0 0 setrgbcolor newpath -2035 304 moveto +13278 428 moveto 180 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -191 0 rlineto 0 -100 rlineto -2035 304 lineto +13278 428 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -2035 326.2969 moveto +13278 450.2969 moveto 187 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -2045.3594 313.5781 moveto +13288.3594 437.5781 moveto P$0 -2051.8125 314.9063 moveto +13294.8125 438.9063 moveto P$1 -2051.8125 313.1563 moveto +13294.8125 437.1563 moveto P$2 -2065.2656 314.6094 moveto +13308.2656 438.6094 moveto P$3 -2072.4219 318.3594 moveto +13315.4219 442.3594 moveto P$4 -2080.6094 317.5469 moveto +13323.6094 441.5469 moveto P$5 -2084.3438 316.625 moveto +13327.3438 440.625 moveto P$6 -2091.8594 315.4219 moveto +13334.8594 439.4219 moveto P$7 -2099.1563 313.5781 moveto +13342.1563 437.5781 moveto P$8 -2107.3906 314.4688 moveto +13350.3906 438.4688 moveto P$9 -2105.7656 319.4219 moveto +13348.7656 443.4219 moveto P$a -2112.1719 313.3438 moveto +13355.1719 437.3438 moveto P$b -2112.1719 310.3594 moveto +13355.1719 434.3594 moveto P$c -2121.3906 319.7031 moveto +13364.3906 443.7031 moveto P$d -2119.7656 314.9375 moveto +13362.7656 438.9375 moveto P$e -2126.1719 313.3438 moveto +13369.1719 437.3438 moveto P$b -2126.1719 310.3594 moveto +13369.1719 434.3594 moveto P$c -2132.8438 311.1719 moveto +13375.8438 435.1719 moveto P$f -2139.6094 317.5469 moveto +13382.6094 441.5469 moveto P$5 -2143.3438 316.625 moveto +13386.3438 440.625 moveto P$6 -2145.4219 318.3594 moveto +13388.4219 442.3594 moveto P$4 -2153.6094 317.5469 moveto +13396.6094 441.5469 moveto P$5 -2157.3438 316.625 moveto +13400.3438 440.625 moveto P$6 -2159.0938 318.0156 moveto -P$g -2174.3906 314.4688 moveto +13402.0938 442.0156 moveto +P$m +13417.3906 438.4688 moveto P$9 -2172.7656 319.4219 moveto +13415.7656 443.4219 moveto P$a -2179.1719 313.3438 moveto +13422.1719 437.3438 moveto P$b -2179.1719 310.3594 moveto +13422.1719 434.3594 moveto P$c -2185.8438 311.1719 moveto +13428.8438 435.1719 moveto P$f -2189.1719 313.3438 moveto +13432.1719 437.3438 moveto P$b -2189.1719 310.3594 moveto +13432.1719 434.3594 moveto P$c -2200.875 316.3438 moveto -P$h -2208.3906 319.7031 moveto +13443.875 440.3438 moveto +P$g +13451.3906 443.7031 moveto P$d -2206.7656 314.9375 moveto +13449.7656 438.9375 moveto P$e fill 0.7843 0.7843 0.7843 setrgbcolor newpath -1064 59 moveto +12698 59 moveto 167 0 rlineto 7 22.2969 rlineto 385 0 rlineto 0 697.7031 rlineto -559 0 rlineto 0 -720 rlineto -1064 59 lineto +12698 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -1064.5 59.5 moveto +12698.5 59.5 moveto 167 0 rlineto 7 22.2969 rlineto 384 0 rlineto 0 696.7031 rlineto -558 0 rlineto 0 -719 rlineto -1064.5 59.5 lineto +12698.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -1065 60 moveto +12699 60 moveto 167 0 rlineto 7 22.2969 rlineto 383 0 rlineto 0 695.7031 rlineto -557 0 rlineto 0 -718 rlineto -1065 60 lineto +12699 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -1065.5 60.5 moveto +12699.5 60.5 moveto 167 0 rlineto 7 22.2969 rlineto 382 0 rlineto 0 694.7031 rlineto -556 0 rlineto 0 -717 rlineto -1065.5 60.5 lineto +12699.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -1066 61 moveto +12700 61 moveto 167 0 rlineto 7 22.2969 rlineto 381 0 rlineto 0 693.7031 rlineto -555 0 rlineto 0 -716 rlineto -1066 61 lineto +12700 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -1066.5 61.5 moveto +12700.5 61.5 moveto 167 0 rlineto 7 22.2969 rlineto 380 0 rlineto 0 692.7031 rlineto -554 0 rlineto 0 -715 rlineto -1066.5 61.5 lineto +12700.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -1067 62 moveto +12701 62 moveto 167 0 rlineto 7 22.2969 rlineto 379 0 rlineto 0 691.7031 rlineto -553 0 rlineto 0 -714 rlineto -1067 62 lineto +12701 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -1061 56 moveto +12695 56 moveto 167 0 rlineto 7 22.2969 rlineto 385 0 rlineto 0 697.7031 rlineto -559 0 rlineto 0 -720 rlineto -1061 56 lineto +12695 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -1061 56 moveto +12695 56 moveto 167 0 rlineto 7 22.2969 rlineto 385 0 rlineto 0 697.7031 rlineto -559 0 rlineto 0 -720 rlineto -1061 56 lineto +12695 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -1061 78.2969 moveto +12695 78.2969 moveto 174 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1071.3594 65.5781 moveto +12705.3594 65.5781 moveto P$0 -1077.8125 66.9063 moveto +12711.8125 66.9063 moveto P$1 -1077.8125 65.1563 moveto +12711.8125 65.1563 moveto P$2 -1091.2656 66.6094 moveto +12725.2656 66.6094 moveto P$3 -1098.4219 70.3594 moveto +12732.4219 70.3594 moveto P$4 -1106.6094 69.5469 moveto +12740.6094 69.5469 moveto P$5 -1110.3438 68.625 moveto +12744.3438 68.625 moveto P$6 -1117.8594 67.4219 moveto +12751.8594 67.4219 moveto P$7 -1125.1563 65.5781 moveto +12759.1563 65.5781 moveto P$8 -1133.3906 66.4688 moveto +12767.3906 66.4688 moveto P$9 -1131.7656 71.4219 moveto +12765.7656 71.4219 moveto P$a -1138.1719 65.3438 moveto +12772.1719 65.3438 moveto P$b -1138.1719 62.3594 moveto +12772.1719 62.3594 moveto P$c -1147.3906 71.7031 moveto +12781.3906 71.7031 moveto P$d -1145.7656 66.9375 moveto +12779.7656 66.9375 moveto P$e -1152.1719 65.3438 moveto +12786.1719 65.3438 moveto P$b -1152.1719 62.3594 moveto +12786.1719 62.3594 moveto P$c -1158.8438 63.1719 moveto +12792.8438 63.1719 moveto P$f -1165.6094 69.5469 moveto +12799.6094 69.5469 moveto P$5 -1169.3438 68.625 moveto +12803.3438 68.625 moveto P$6 -1171.4219 70.3594 moveto +12805.4219 70.3594 moveto P$4 -1176.1719 62.3594 moveto +12810.1719 62.3594 moveto +P$n +12826.8125 69.1563 moveto P$i -1192.8125 69.1563 moveto +12824.2969 68.3438 moveto P$j -1190.2969 68.3438 moveto -P$k -1200.8594 67.4219 moveto +12834.8594 67.4219 moveto P$7 -1209.875 68.3438 moveto -P$h -1219.8125 69.1563 moveto +12843.875 68.3438 moveto +P$g +12853.8125 69.1563 moveto +P$i +12851.2969 68.3438 moveto P$j -1217.2969 68.3438 moveto -P$k -1222.1719 62.3594 moveto -P$l +12856.1719 62.3594 moveto +P$o fill 0.7843 0.7843 0.7843 setrgbcolor newpath -2423 183 moveto +290 183 moveto 151 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 325.7031 rlineto -317 0 rlineto 0 -348 rlineto -2423 183 lineto +290 183 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -2423.5 183.5 moveto +290.5 183.5 moveto 150 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 324.7031 rlineto -316 0 rlineto 0 -347 rlineto -2423.5 183.5 lineto +290.5 183.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -2424 184 moveto +291 184 moveto 149 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 323.7031 rlineto -315 0 rlineto 0 -346 rlineto -2424 184 lineto +291 184 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -2424.5 184.5 moveto +291.5 184.5 moveto 148 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 322.7031 rlineto -314 0 rlineto 0 -345 rlineto -2424.5 184.5 lineto +291.5 184.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -2425 185 moveto +292 185 moveto 147 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 321.7031 rlineto -313 0 rlineto 0 -344 rlineto -2425 185 lineto +292 185 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -2425.5 185.5 moveto +292.5 185.5 moveto 146 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 320.7031 rlineto -312 0 rlineto 0 -343 rlineto -2425.5 185.5 lineto +292.5 185.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -2426 186 moveto +293 186 moveto 145 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 319.7031 rlineto -311 0 rlineto 0 -342 rlineto -2426 186 lineto +293 186 lineto closepath eofill 1 1 1 setrgbcolor newpath -2420 180 moveto +287 180 moveto 151 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 325.7031 rlineto -317 0 rlineto 0 -348 rlineto -2420 180 lineto +287 180 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -2420 180 moveto +287 180 moveto 151 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 325.7031 rlineto -317 0 rlineto 0 -348 rlineto -2420 180 lineto +287 180 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -2420 202.2969 moveto +287 202.2969 moveto 158 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -2430.3594 189.5781 moveto +297.3594 189.5781 moveto P$0 -2436.8125 190.9063 moveto +303.8125 190.9063 moveto P$1 -2436.8125 189.1563 moveto +303.8125 189.1563 moveto P$2 -2450.2656 190.6094 moveto +317.2656 190.6094 moveto P$3 -2457.4219 194.3594 moveto +324.4219 194.3594 moveto P$4 -2465.6094 193.5469 moveto +332.6094 193.5469 moveto P$5 -2469.3438 192.625 moveto +336.3438 192.625 moveto P$6 -2476.8594 191.4219 moveto +343.8594 191.4219 moveto P$7 -2484.1563 189.5781 moveto +351.1563 189.5781 moveto P$8 -2492.3906 190.4688 moveto +359.3906 190.4688 moveto P$9 -2490.7656 195.4219 moveto +357.7656 195.4219 moveto P$a -2497.1719 189.3438 moveto +364.1719 189.3438 moveto P$b -2497.1719 186.3594 moveto +364.1719 186.3594 moveto P$c -2506.3906 195.7031 moveto +373.3906 195.7031 moveto P$d -2504.7656 190.9375 moveto +371.7656 190.9375 moveto P$e -2511.1719 189.3438 moveto +378.1719 189.3438 moveto P$b -2511.1719 186.3594 moveto +378.1719 186.3594 moveto P$c -2517.8438 187.1719 moveto +384.8438 187.1719 moveto P$f -2524.6094 193.5469 moveto +391.6094 193.5469 moveto P$5 -2528.3438 192.625 moveto +395.3438 192.625 moveto P$6 -2530.4219 194.3594 moveto +397.4219 194.3594 moveto P$4 -2538.6094 193.5469 moveto +405.6094 193.5469 moveto P$5 -2542.3438 192.625 moveto +409.3438 192.625 moveto P$6 -2546.8438 187.1719 moveto +413.8438 187.1719 moveto P$f -2553.8125 190.9063 moveto +420.8125 190.9063 moveto P$1 -2553.8125 189.1563 moveto +420.8125 189.1563 moveto P$2 -2559.7969 189.3438 moveto -P$m -fill -0.7843 0.7843 0.7843 setrgbcolor -newpath -1647 183 moveto -151 0 rlineto -7 22.2969 rlineto -238 0 rlineto -0 77.7031 rlineto --396 0 rlineto -0 -100 rlineto -1647 183 lineto -closepath eofill -0.6863 0.6863 0.6863 setrgbcolor -newpath -1647.5 183.5 moveto -151 0 rlineto -6 22.2969 rlineto -238 0 rlineto -0 76.7031 rlineto --395 0 rlineto -0 -99 rlineto -1647.5 183.5 lineto -closepath eofill -0.5882 0.5882 0.5882 setrgbcolor -newpath -1648 184 moveto -151 0 rlineto -5 22.2969 rlineto -238 0 rlineto -0 75.7031 rlineto --394 0 rlineto -0 -98 rlineto -1648 184 lineto -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -newpath -1648.5 184.5 moveto -151 0 rlineto -4 22.2969 rlineto -238 0 rlineto -0 74.7031 rlineto --393 0 rlineto -0 -97 rlineto -1648.5 184.5 lineto -closepath eofill -0.3922 0.3922 0.3922 setrgbcolor -newpath -1649 185 moveto -151 0 rlineto -3 22.2969 rlineto -238 0 rlineto -0 73.7031 rlineto --392 0 rlineto -0 -96 rlineto -1649 185 lineto -closepath eofill -0.2941 0.2941 0.2941 setrgbcolor -newpath -1649.5 185.5 moveto -151 0 rlineto -2 22.2969 rlineto -238 0 rlineto -0 72.7031 rlineto --391 0 rlineto -0 -95 rlineto -1649.5 185.5 lineto -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -newpath -1650 186 moveto -151 0 rlineto -1 22.2969 rlineto -238 0 rlineto -0 71.7031 rlineto --390 0 rlineto -0 -94 rlineto -1650 186 lineto -closepath eofill -1 1 1 setrgbcolor -newpath -1644 180 moveto -151 0 rlineto -7 22.2969 rlineto -238 0 rlineto -0 77.7031 rlineto --396 0 rlineto -0 -100 rlineto -1644 180 lineto -closepath eofill -2.0 setlinewidth -0 0 0 setrgbcolor -newpath -1644 180 moveto -151 0 rlineto -7 22.2969 rlineto -238 0 rlineto -0 77.7031 rlineto --396 0 rlineto -0 -100 rlineto -1644 180 lineto -closepath stroke -2.0 setlinewidth -0 0 0 setrgbcolor -newpath -1644 202.2969 moveto -158 0 rlineto -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1654.3594 189.5781 moveto -P$0 -1660.8125 190.9063 moveto -P$1 -1660.8125 189.1563 moveto -P$2 -1674.2656 190.6094 moveto -P$3 -1681.4219 194.3594 moveto -P$4 -1689.6094 193.5469 moveto -P$5 -1693.3438 192.625 moveto -P$6 -1700.8594 191.4219 moveto -P$7 -1708.1563 189.5781 moveto -P$8 -1716.3906 190.4688 moveto -P$9 -1714.7656 195.4219 moveto -P$a -1721.1719 189.3438 moveto -P$b -1721.1719 186.3594 moveto -P$c -1730.3906 195.7031 moveto -P$d -1728.7656 190.9375 moveto -P$e -1735.1719 189.3438 moveto -P$b -1735.1719 186.3594 moveto -P$c -1741.8438 187.1719 moveto -P$f -1748.6094 193.5469 moveto -P$5 -1752.3438 192.625 moveto -P$6 -1754.4219 194.3594 moveto -P$4 -1758.5 189.3438 moveto -P$n -1780.8125 193.1563 moveto -P$j -1778.2969 192.3438 moveto -P$k -1787.25 195.4219 moveto -P$o -1785.625 190.4688 moveto +426.7969 189.3438 moveto P$p fill 0.7843 0.7843 0.7843 setrgbcolor newpath -7225 431 moveto +876 431 moveto 230 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 325.7031 rlineto -331 0 rlineto 0 -348 rlineto -7225 431 lineto +876 431 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -7225.5 431.5 moveto +876.5 431.5 moveto 229 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 324.7031 rlineto -330 0 rlineto 0 -347 rlineto -7225.5 431.5 lineto +876.5 431.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -7226 432 moveto +877 432 moveto 228 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 323.7031 rlineto -329 0 rlineto 0 -346 rlineto -7226 432 lineto +877 432 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -7226.5 432.5 moveto +877.5 432.5 moveto 227 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 322.7031 rlineto -328 0 rlineto 0 -345 rlineto -7226.5 432.5 lineto +877.5 432.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -7227 433 moveto +878 433 moveto 226 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 321.7031 rlineto -327 0 rlineto 0 -344 rlineto -7227 433 lineto +878 433 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -7227.5 433.5 moveto +878.5 433.5 moveto 225 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 320.7031 rlineto -326 0 rlineto 0 -343 rlineto -7227.5 433.5 lineto +878.5 433.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -7228 434 moveto +879 434 moveto 224 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 319.7031 rlineto -325 0 rlineto 0 -342 rlineto -7228 434 lineto +879 434 lineto closepath eofill 1 1 1 setrgbcolor newpath -7222 428 moveto +873 428 moveto 230 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 325.7031 rlineto -331 0 rlineto 0 -348 rlineto -7222 428 lineto +873 428 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7222 428 moveto +873 428 moveto 230 0 rlineto 7 22.2969 rlineto 94 0 rlineto 0 325.7031 rlineto -331 0 rlineto 0 -348 rlineto -7222 428 lineto +873 428 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7222 450.2969 moveto +873 450.2969 moveto 237 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -7232.3594 437.5781 moveto +883.3594 437.5781 moveto P$0 -7238.8125 438.9063 moveto +889.8125 438.9063 moveto P$1 -7238.8125 437.1563 moveto +889.8125 437.1563 moveto P$2 -7252.2656 438.6094 moveto +903.2656 438.6094 moveto P$3 -7259.4219 442.3594 moveto +910.4219 442.3594 moveto P$4 -7267.6094 441.5469 moveto +918.6094 441.5469 moveto P$5 -7271.3438 440.625 moveto +922.3438 440.625 moveto P$6 -7278.8594 439.4219 moveto +929.8594 439.4219 moveto P$7 -7286.1563 437.5781 moveto +937.1563 437.5781 moveto P$8 -7294.3906 438.4688 moveto +945.3906 438.4688 moveto P$9 -7292.7656 443.4219 moveto +943.7656 443.4219 moveto P$a -7299.1719 437.3438 moveto +950.1719 437.3438 moveto P$b -7299.1719 434.3594 moveto +950.1719 434.3594 moveto P$c -7308.3906 443.7031 moveto +959.3906 443.7031 moveto P$d -7306.7656 438.9375 moveto +957.7656 438.9375 moveto P$e -7313.1719 437.3438 moveto +964.1719 437.3438 moveto P$b -7313.1719 434.3594 moveto +964.1719 434.3594 moveto P$c -7319.8438 435.1719 moveto +970.8438 435.1719 moveto P$f -7326.6094 441.5469 moveto +977.6094 441.5469 moveto P$5 -7330.3438 440.625 moveto +981.3438 440.625 moveto P$6 -7332.4219 442.3594 moveto +983.4219 442.3594 moveto P$4 -7343.3594 437.5781 moveto +994.3594 437.5781 moveto P$0 -7349.6094 441.5469 moveto +1000.6094 441.5469 moveto P$5 -7353.3438 440.625 moveto +1004.3438 440.625 moveto P$6 -7357.8438 435.1719 moveto +1008.8438 435.1719 moveto P$f -7368.8125 441.1563 moveto +1019.8125 441.1563 moveto +P$i +1017.2969 440.3438 moveto P$j -7366.2969 440.3438 moveto -P$k -7376.3906 443.7031 moveto +1027.3906 443.7031 moveto P$d -7374.7656 438.9375 moveto +1025.7656 438.9375 moveto P$e -7384.8125 438.9063 moveto +1035.8125 438.9063 moveto P$1 -7384.8125 437.1563 moveto +1035.8125 437.1563 moveto P$2 -7396.8594 439.4219 moveto +1047.8594 439.4219 moveto P$7 -7398.1719 437.3438 moveto +1049.1719 437.3438 moveto P$b -7398.1719 434.3594 moveto +1049.1719 434.3594 moveto P$c -7401.7969 437.3438 moveto -P$m -7414.6094 441.5469 moveto +1052.7969 437.3438 moveto +P$p +1065.6094 441.5469 moveto P$5 -7418.3438 440.625 moveto +1069.3438 440.625 moveto P$6 -7422.8438 435.1719 moveto +1073.8438 435.1719 moveto P$f -7426.1719 437.3438 moveto +1077.1719 437.3438 moveto P$b -7426.1719 434.3594 moveto +1077.1719 434.3594 moveto P$c -7433.8125 438.9063 moveto +1084.8125 438.9063 moveto P$1 -7433.8125 437.1563 moveto +1084.8125 437.1563 moveto P$2 -7447.875 440.3438 moveto -P$h +1098.875 440.3438 moveto +P$g fill 0.7843 0.7843 0.7843 setrgbcolor newpath -2791 307 moveto +1231 307 moveto 149 0 rlineto 7 22.2969 rlineto -1977 0 rlineto +2497 0 rlineto 0 729.7031 rlineto --2133 0 rlineto +-2653 0 rlineto 0 -752 rlineto -2791 307 lineto +1231 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -2791.5 307.5 moveto +1231.5 307.5 moveto 149 0 rlineto 7 22.2969 rlineto -1976 0 rlineto +2496 0 rlineto 0 728.7031 rlineto --2132 0 rlineto +-2652 0 rlineto 0 -751 rlineto -2791.5 307.5 lineto +1231.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -2792 308 moveto +1232 308 moveto 149 0 rlineto 7 22.2969 rlineto -1975 0 rlineto +2495 0 rlineto 0 727.7031 rlineto --2131 0 rlineto +-2651 0 rlineto 0 -750 rlineto -2792 308 lineto +1232 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -2792.5 308.5 moveto +1232.5 308.5 moveto 149 0 rlineto 7 22.2969 rlineto -1974 0 rlineto +2494 0 rlineto 0 726.7031 rlineto --2130 0 rlineto +-2650 0 rlineto 0 -749 rlineto -2792.5 308.5 lineto +1232.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -2793 309 moveto +1233 309 moveto 149 0 rlineto 7 22.2969 rlineto -1973 0 rlineto +2493 0 rlineto 0 725.7031 rlineto --2129 0 rlineto +-2649 0 rlineto 0 -748 rlineto -2793 309 lineto +1233 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -2793.5 309.5 moveto +1233.5 309.5 moveto 149 0 rlineto 7 22.2969 rlineto -1972 0 rlineto +2492 0 rlineto 0 724.7031 rlineto --2128 0 rlineto +-2648 0 rlineto 0 -747 rlineto -2793.5 309.5 lineto +1233.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -2794 310 moveto +1234 310 moveto 149 0 rlineto 7 22.2969 rlineto -1971 0 rlineto +2491 0 rlineto 0 723.7031 rlineto --2127 0 rlineto +-2647 0 rlineto 0 -746 rlineto -2794 310 lineto +1234 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -2788 304 moveto +1228 304 moveto 149 0 rlineto 7 22.2969 rlineto -1977 0 rlineto +2497 0 rlineto 0 729.7031 rlineto --2133 0 rlineto +-2653 0 rlineto 0 -752 rlineto -2788 304 lineto +1228 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -2788 304 moveto +1228 304 moveto 149 0 rlineto 7 22.2969 rlineto -1977 0 rlineto +2497 0 rlineto 0 729.7031 rlineto --2133 0 rlineto +-2653 0 rlineto 0 -752 rlineto -2788 304 lineto +1228 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -2788 326.2969 moveto +1228 326.2969 moveto 156 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -2798.3594 313.5781 moveto +1238.3594 313.5781 moveto P$0 -2804.8125 314.9063 moveto +1244.8125 314.9063 moveto P$1 -2804.8125 313.1563 moveto +1244.8125 313.1563 moveto P$2 -2818.2656 314.6094 moveto +1258.2656 314.6094 moveto P$3 -2825.4219 318.3594 moveto +1265.4219 318.3594 moveto P$4 -2833.6094 317.5469 moveto +1273.6094 317.5469 moveto P$5 -2837.3438 316.625 moveto +1277.3438 316.625 moveto P$6 -2844.8594 315.4219 moveto +1284.8594 315.4219 moveto P$7 -2852.1563 313.5781 moveto +1292.1563 313.5781 moveto P$8 -2860.3906 314.4688 moveto +1300.3906 314.4688 moveto P$9 -2858.7656 319.4219 moveto +1298.7656 319.4219 moveto P$a -2865.1719 313.3438 moveto +1305.1719 313.3438 moveto P$b -2865.1719 310.3594 moveto +1305.1719 310.3594 moveto P$c -2874.3906 319.7031 moveto +1314.3906 319.7031 moveto P$d -2872.7656 314.9375 moveto +1312.7656 314.9375 moveto P$e -2879.1719 313.3438 moveto +1319.1719 313.3438 moveto P$b -2879.1719 310.3594 moveto +1319.1719 310.3594 moveto P$c -2885.8438 311.1719 moveto +1325.8438 311.1719 moveto P$f -2892.6094 317.5469 moveto +1332.6094 317.5469 moveto P$5 -2896.3438 316.625 moveto +1336.3438 316.625 moveto P$6 -2898.4219 318.3594 moveto +1338.4219 318.3594 moveto P$4 -2909.3594 313.5781 moveto +1349.3594 313.5781 moveto P$0 -2919.2656 314.6094 moveto +1359.2656 314.6094 moveto P$3 -2932.1563 313.5781 moveto +1372.1563 313.5781 moveto P$8 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -6960 431 moveto +25 431 moveto 230 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -241 0 rlineto 0 -100 rlineto -6960 431 lineto +25 431 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -6960.5 431.5 moveto +25.5 431.5 moveto 229 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -240 0 rlineto 0 -99 rlineto -6960.5 431.5 lineto +25.5 431.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -6961 432 moveto +26 432 moveto 228 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -239 0 rlineto 0 -98 rlineto -6961 432 lineto +26 432 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -6961.5 432.5 moveto +26.5 432.5 moveto 227 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -238 0 rlineto 0 -97 rlineto -6961.5 432.5 lineto +26.5 432.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -6962 433 moveto +27 433 moveto 226 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -237 0 rlineto 0 -96 rlineto -6962 433 lineto +27 433 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -6962.5 433.5 moveto +27.5 433.5 moveto 225 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -236 0 rlineto 0 -95 rlineto -6962.5 433.5 lineto +27.5 433.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -6963 434 moveto +28 434 moveto 224 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -235 0 rlineto 0 -94 rlineto -6963 434 lineto +28 434 lineto closepath eofill 1 1 1 setrgbcolor newpath -6957 428 moveto +22 428 moveto 230 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -241 0 rlineto 0 -100 rlineto -6957 428 lineto +22 428 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -6957 428 moveto +22 428 moveto 230 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -241 0 rlineto 0 -100 rlineto -6957 428 lineto +22 428 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -6957 450.2969 moveto +22 450.2969 moveto 237 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -6967.3594 437.5781 moveto +32.3594 437.5781 moveto P$0 -6973.8125 438.9063 moveto +38.8125 438.9063 moveto P$1 -6973.8125 437.1563 moveto +38.8125 437.1563 moveto P$2 -6987.2656 438.6094 moveto +52.2656 438.6094 moveto P$3 -6994.4219 442.3594 moveto +59.4219 442.3594 moveto P$4 -7002.6094 441.5469 moveto +67.6094 441.5469 moveto P$5 -7006.3438 440.625 moveto +71.3438 440.625 moveto P$6 -7013.8594 439.4219 moveto +78.8594 439.4219 moveto P$7 -7021.1563 437.5781 moveto +86.1563 437.5781 moveto P$8 -7029.3906 438.4688 moveto +94.3906 438.4688 moveto P$9 -7027.7656 443.4219 moveto +92.7656 443.4219 moveto P$a -7034.1719 437.3438 moveto +99.1719 437.3438 moveto P$b -7034.1719 434.3594 moveto +99.1719 434.3594 moveto P$c -7043.3906 443.7031 moveto +108.3906 443.7031 moveto P$d -7041.7656 438.9375 moveto +106.7656 438.9375 moveto P$e -7048.1719 437.3438 moveto +113.1719 437.3438 moveto P$b -7048.1719 434.3594 moveto +113.1719 434.3594 moveto P$c -7054.8438 435.1719 moveto +119.8438 435.1719 moveto P$f -7061.6094 441.5469 moveto +126.6094 441.5469 moveto P$5 -7065.3438 440.625 moveto +130.3438 440.625 moveto P$6 -7067.4219 442.3594 moveto +132.4219 442.3594 moveto P$4 -7075.6094 441.5469 moveto +140.6094 441.5469 moveto P$5 -7079.3438 440.625 moveto +144.3438 440.625 moveto P$6 -7083.8438 435.1719 moveto +148.8438 435.1719 moveto P$f -7090.8125 438.9063 moveto +155.8125 438.9063 moveto P$1 -7090.8125 437.1563 moveto +155.8125 437.1563 moveto P$2 -7096.7969 437.3438 moveto -P$m -7106.4219 442.3594 moveto +161.7969 437.3438 moveto +P$p +171.4219 442.3594 moveto P$4 -7117.1563 437.5781 moveto +182.1563 437.5781 moveto P$8 -7120.1719 437.3438 moveto +185.1719 437.3438 moveto P$b -7120.1719 434.3594 moveto +185.1719 434.3594 moveto P$c -7126.8438 435.1719 moveto +191.8438 435.1719 moveto P$f -7137.8125 441.1563 moveto +202.8125 441.1563 moveto +P$i +200.2969 440.3438 moveto P$j -7135.2969 440.3438 moveto -P$k -7142.625 443.8906 moveto +207.625 443.8906 moveto P$q -7144.25 438.9375 moveto +209.25 438.9375 moveto P$r -7155.8594 439.4219 moveto +220.8594 439.4219 moveto P$7 -7160.8125 438.9063 moveto +225.8125 438.9063 moveto P$1 -7160.8125 437.1563 moveto +225.8125 437.1563 moveto P$2 -7169.1094 441.0781 moveto +234.1094 441.0781 moveto P$s -7175.1719 437.3438 moveto +240.1719 437.3438 moveto P$t fill 0.7843 0.7843 0.7843 setrgbcolor newpath -8995 307 moveto +18990 307 moveto 189 0 rlineto 7 22.2969 rlineto 295 0 rlineto 0 77.7031 rlineto -491 0 rlineto 0 -100 rlineto -8995 307 lineto +18990 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -8995.5 307.5 moveto +18990.5 307.5 moveto 189 0 rlineto 6 22.2969 rlineto 295 0 rlineto 0 76.7031 rlineto -490 0 rlineto 0 -99 rlineto -8995.5 307.5 lineto +18990.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -8996 308 moveto +18991 308 moveto 189 0 rlineto 5 22.2969 rlineto 295 0 rlineto 0 75.7031 rlineto -489 0 rlineto 0 -98 rlineto -8996 308 lineto +18991 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -8996.5 308.5 moveto +18991.5 308.5 moveto 189 0 rlineto 4 22.2969 rlineto 295 0 rlineto 0 74.7031 rlineto -488 0 rlineto 0 -97 rlineto -8996.5 308.5 lineto +18991.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -8997 309 moveto +18992 309 moveto 189 0 rlineto 3 22.2969 rlineto 295 0 rlineto 0 73.7031 rlineto -487 0 rlineto 0 -96 rlineto -8997 309 lineto +18992 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -8997.5 309.5 moveto +18992.5 309.5 moveto 189 0 rlineto 2 22.2969 rlineto 295 0 rlineto 0 72.7031 rlineto -486 0 rlineto 0 -95 rlineto -8997.5 309.5 lineto +18992.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -8998 310 moveto +18993 310 moveto 189 0 rlineto 1 22.2969 rlineto 295 0 rlineto 0 71.7031 rlineto -485 0 rlineto 0 -94 rlineto -8998 310 lineto +18993 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -8992 304 moveto +18987 304 moveto 189 0 rlineto 7 22.2969 rlineto 295 0 rlineto 0 77.7031 rlineto -491 0 rlineto 0 -100 rlineto -8992 304 lineto +18987 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -8992 304 moveto +18987 304 moveto 189 0 rlineto 7 22.2969 rlineto 295 0 rlineto 0 77.7031 rlineto -491 0 rlineto 0 -100 rlineto -8992 304 lineto +18987 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -8992 326.2969 moveto +18987 326.2969 moveto 196 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -9002.3594 313.5781 moveto +18997.3594 313.5781 moveto P$0 -9008.8125 314.9063 moveto +19003.8125 314.9063 moveto P$1 -9008.8125 313.1563 moveto +19003.8125 313.1563 moveto P$2 -9022.2656 314.6094 moveto +19017.2656 314.6094 moveto P$3 -9029.4219 318.3594 moveto +19024.4219 318.3594 moveto P$4 -9037.6094 317.5469 moveto +19032.6094 317.5469 moveto P$5 -9041.3438 316.625 moveto +19036.3438 316.625 moveto P$6 -9048.8594 315.4219 moveto +19043.8594 315.4219 moveto P$7 -9056.1563 313.5781 moveto +19051.1563 313.5781 moveto P$8 -9064.3906 314.4688 moveto +19059.3906 314.4688 moveto P$9 -9062.7656 319.4219 moveto +19057.7656 319.4219 moveto P$a -9069.1719 313.3438 moveto +19064.1719 313.3438 moveto P$b -9069.1719 310.3594 moveto +19064.1719 310.3594 moveto P$c -9078.3906 319.7031 moveto +19073.3906 319.7031 moveto P$d -9076.7656 314.9375 moveto +19071.7656 314.9375 moveto P$e -9083.1719 313.3438 moveto +19078.1719 313.3438 moveto P$b -9083.1719 310.3594 moveto +19078.1719 310.3594 moveto P$c -9089.8438 311.1719 moveto +19084.8438 311.1719 moveto P$f -9096.6094 317.5469 moveto +19091.6094 317.5469 moveto P$5 -9100.3438 316.625 moveto +19095.3438 316.625 moveto P$6 -9102.4219 318.3594 moveto +19097.4219 318.3594 moveto P$4 -9110.6094 317.5469 moveto +19105.6094 317.5469 moveto P$5 -9114.3438 316.625 moveto +19109.3438 316.625 moveto P$6 -9116.0938 318.0156 moveto -P$g -9128.8438 311.1719 moveto +19111.0938 318.0156 moveto +P$m +19123.8438 311.1719 moveto P$f -9139.875 316.3438 moveto +19134.875 316.3438 moveto P$u -9142.4219 318.3594 moveto +19137.4219 318.3594 moveto P$4 -9154.875 316.3438 moveto +19149.875 316.3438 moveto P$u -9159.8438 311.1719 moveto +19154.8438 311.1719 moveto P$f -9165.8438 311.1719 moveto +19160.8438 311.1719 moveto P$f -9171.625 319.8906 moveto +19166.625 319.8906 moveto P$q -9173.25 314.9375 moveto +19168.25 314.9375 moveto P$r fill 0.7843 0.7843 0.7843 setrgbcolor newpath -11137 307 moveto +13540 307 moveto 200 0 rlineto 7 22.2969 rlineto -424 0 rlineto +426 0 rlineto 0 325.7031 rlineto --631 0 rlineto +-633 0 rlineto 0 -348 rlineto -11137 307 lineto +13540 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -11137.5 307.5 moveto +13540.5 307.5 moveto 200 0 rlineto 7 22.2969 rlineto -423 0 rlineto +425 0 rlineto 0 324.7031 rlineto --630 0 rlineto +-632 0 rlineto 0 -347 rlineto -11137.5 307.5 lineto +13540.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -11138 308 moveto -200 0 rlineto -7 22.2969 rlineto -422 0 rlineto -0 323.7031 rlineto --629 0 rlineto -0 -346 rlineto -11138 308 lineto -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -newpath -11138.5 308.5 moveto -200 0 rlineto -7 22.2969 rlineto -421 0 rlineto -0 322.7031 rlineto --628 0 rlineto -0 -345 rlineto -11138.5 308.5 lineto -closepath eofill -0.3922 0.3922 0.3922 setrgbcolor -newpath -11139 309 moveto -200 0 rlineto -7 22.2969 rlineto -420 0 rlineto -0 321.7031 rlineto --627 0 rlineto -0 -344 rlineto -11139 309 lineto -closepath eofill -0.2941 0.2941 0.2941 setrgbcolor -newpath -11139.5 309.5 moveto -200 0 rlineto -7 22.2969 rlineto -419 0 rlineto -0 320.7031 rlineto --626 0 rlineto -0 -343 rlineto -11139.5 309.5 lineto -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -newpath -11140 310 moveto -200 0 rlineto -7 22.2969 rlineto -418 0 rlineto -0 319.7031 rlineto --625 0 rlineto -0 -342 rlineto -11140 310 lineto -closepath eofill -1 1 1 setrgbcolor -newpath -11134 304 moveto +13541 308 moveto 200 0 rlineto 7 22.2969 rlineto 424 0 rlineto -0 325.7031 rlineto +0 323.7031 rlineto -631 0 rlineto +0 -346 rlineto +13541 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +13541.5 308.5 moveto +200 0 rlineto +7 22.2969 rlineto +423 0 rlineto +0 322.7031 rlineto +-630 0 rlineto +0 -345 rlineto +13541.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +13542 309 moveto +200 0 rlineto +7 22.2969 rlineto +422 0 rlineto +0 321.7031 rlineto +-629 0 rlineto +0 -344 rlineto +13542 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +13542.5 309.5 moveto +200 0 rlineto +7 22.2969 rlineto +421 0 rlineto +0 320.7031 rlineto +-628 0 rlineto +0 -343 rlineto +13542.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +13543 310 moveto +200 0 rlineto +7 22.2969 rlineto +420 0 rlineto +0 319.7031 rlineto +-627 0 rlineto +0 -342 rlineto +13543 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +13537 304 moveto +200 0 rlineto +7 22.2969 rlineto +426 0 rlineto +0 325.7031 rlineto +-633 0 rlineto 0 -348 rlineto -11134 304 lineto +13537 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -11134 304 moveto +13537 304 moveto 200 0 rlineto 7 22.2969 rlineto -424 0 rlineto +426 0 rlineto 0 325.7031 rlineto --631 0 rlineto +-633 0 rlineto 0 -348 rlineto -11134 304 lineto +13537 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -11134 326.2969 moveto +13537 326.2969 moveto 207 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -11144.3594 313.5781 moveto +13547.3594 313.5781 moveto P$0 -11150.8125 314.9063 moveto +13553.8125 314.9063 moveto P$1 -11150.8125 313.1563 moveto +13553.8125 313.1563 moveto P$2 -11164.2656 314.6094 moveto +13567.2656 314.6094 moveto P$3 -11171.4219 318.3594 moveto +13574.4219 318.3594 moveto P$4 -11179.6094 317.5469 moveto +13582.6094 317.5469 moveto P$5 -11183.3438 316.625 moveto +13586.3438 316.625 moveto P$6 -11190.8594 315.4219 moveto +13593.8594 315.4219 moveto P$7 -11198.1563 313.5781 moveto +13601.1563 313.5781 moveto P$8 -11206.3906 314.4688 moveto +13609.3906 314.4688 moveto P$9 -11204.7656 319.4219 moveto +13607.7656 319.4219 moveto P$a -11211.1719 313.3438 moveto +13614.1719 313.3438 moveto P$b -11211.1719 310.3594 moveto +13614.1719 310.3594 moveto P$c -11220.3906 319.7031 moveto +13623.3906 319.7031 moveto P$d -11218.7656 314.9375 moveto +13621.7656 314.9375 moveto P$e -11225.1719 313.3438 moveto +13628.1719 313.3438 moveto P$b -11225.1719 310.3594 moveto +13628.1719 310.3594 moveto P$c -11231.8438 311.1719 moveto +13634.8438 311.1719 moveto P$f -11238.6094 317.5469 moveto +13641.6094 317.5469 moveto P$5 -11242.3438 316.625 moveto +13645.3438 316.625 moveto P$6 -11244.4219 318.3594 moveto +13647.4219 318.3594 moveto P$4 -11248.2188 313.3438 moveto +13651.2188 313.3438 moveto P$v -11265.8125 317.1563 moveto +13668.8125 317.1563 moveto +P$i +13666.2969 316.3438 moveto P$j -11263.2969 316.3438 moveto -P$k -11273.8594 315.4219 moveto +13676.8594 315.4219 moveto P$7 -11281.1563 313.5781 moveto +13684.1563 313.5781 moveto P$8 -11284.1719 313.3438 moveto +13687.1719 313.3438 moveto P$b -11284.1719 310.3594 moveto +13687.1719 310.3594 moveto P$c -11291.8125 314.9063 moveto +13694.8125 314.9063 moveto P$1 -11291.8125 313.1563 moveto +13694.8125 313.1563 moveto P$2 -11305.875 316.3438 moveto -P$h -11308.1719 313.3438 moveto +13708.875 316.3438 moveto +P$g +13711.1719 313.3438 moveto P$b -11308.1719 310.3594 moveto +13711.1719 310.3594 moveto P$c -11319.875 316.3438 moveto -P$h -11327.3906 319.7031 moveto +13722.875 316.3438 moveto +P$g +13730.3906 319.7031 moveto P$d -11325.7656 314.9375 moveto +13728.7656 314.9375 moveto P$e fill 0.7843 0.7843 0.7843 setrgbcolor newpath -11792 59 moveto +31212 59 moveto 247 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 325.7031 rlineto -400 0 rlineto 0 -348 rlineto -11792 59 lineto +31212 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -11792.5 59.5 moveto +31212.5 59.5 moveto 246 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 324.7031 rlineto -399 0 rlineto 0 -347 rlineto -11792.5 59.5 lineto +31212.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -11793 60 moveto +31213 60 moveto 245 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 323.7031 rlineto -398 0 rlineto 0 -346 rlineto -11793 60 lineto +31213 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -11793.5 60.5 moveto +31213.5 60.5 moveto 244 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 322.7031 rlineto -397 0 rlineto 0 -345 rlineto -11793.5 60.5 lineto +31213.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -11794 61 moveto +31214 61 moveto 243 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 321.7031 rlineto -396 0 rlineto 0 -344 rlineto -11794 61 lineto +31214 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -11794.5 61.5 moveto +31214.5 61.5 moveto 242 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 320.7031 rlineto -395 0 rlineto 0 -343 rlineto -11794.5 61.5 lineto +31214.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -11795 62 moveto +31215 62 moveto 241 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 319.7031 rlineto -394 0 rlineto 0 -342 rlineto -11795 62 lineto +31215 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -11789 56 moveto +31209 56 moveto 247 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 325.7031 rlineto -400 0 rlineto 0 -348 rlineto -11789 56 lineto +31209 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -11789 56 moveto +31209 56 moveto 247 0 rlineto 7 22.2969 rlineto 146 0 rlineto 0 325.7031 rlineto -400 0 rlineto 0 -348 rlineto -11789 56 lineto +31209 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -11789 78.2969 moveto +31209 78.2969 moveto 254 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -11799.3594 65.5781 moveto +31219.3594 65.5781 moveto P$0 -11805.8125 66.9063 moveto +31225.8125 66.9063 moveto P$1 -11805.8125 65.1563 moveto +31225.8125 65.1563 moveto P$2 -11819.2656 66.6094 moveto +31239.2656 66.6094 moveto P$3 -11826.4219 70.3594 moveto +31246.4219 70.3594 moveto P$4 -11834.6094 69.5469 moveto +31254.6094 69.5469 moveto P$5 -11838.3438 68.625 moveto +31258.3438 68.625 moveto P$6 -11845.8594 67.4219 moveto +31265.8594 67.4219 moveto P$7 -11853.1563 65.5781 moveto +31273.1563 65.5781 moveto P$8 -11861.3906 66.4688 moveto +31281.3906 66.4688 moveto P$9 -11859.7656 71.4219 moveto +31279.7656 71.4219 moveto P$a -11866.1719 65.3438 moveto +31286.1719 65.3438 moveto P$b -11866.1719 62.3594 moveto +31286.1719 62.3594 moveto P$c -11875.3906 71.7031 moveto +31295.3906 71.7031 moveto P$d -11873.7656 66.9375 moveto +31293.7656 66.9375 moveto P$e -11880.1719 65.3438 moveto +31300.1719 65.3438 moveto P$b -11880.1719 62.3594 moveto +31300.1719 62.3594 moveto P$c -11886.8438 63.1719 moveto +31306.8438 63.1719 moveto P$f -11893.6094 69.5469 moveto +31313.6094 69.5469 moveto P$5 -11897.3438 68.625 moveto +31317.3438 68.625 moveto P$6 -11899.4219 70.3594 moveto +31319.4219 70.3594 moveto P$4 -11903.5 65.3438 moveto -P$n -11921.8125 66.9063 moveto +31323.5 65.3438 moveto +P$h +31341.8125 66.9063 moveto P$1 -11921.8125 65.1563 moveto +31341.8125 65.1563 moveto P$2 -11933.8594 67.4219 moveto +31353.8594 67.4219 moveto P$7 -11935.1719 62.3594 moveto -P$i -11949.2188 62.3594 moveto -P$w -11950.1719 62.3594 moveto -P$l -11957.8125 66.9063 moveto -P$1 -11957.8125 65.1563 moveto -P$2 -11963.5 65.3438 moveto +31355.1719 62.3594 moveto P$n -11978.4219 70.3594 moveto +31369.2188 62.3594 moveto +P$w +31370.1719 62.3594 moveto +P$o +31377.8125 66.9063 moveto +P$1 +31377.8125 65.1563 moveto +P$2 +31383.5 65.3438 moveto +P$h +31398.4219 70.3594 moveto P$4 -11989.1563 65.5781 moveto +31409.1563 65.5781 moveto P$8 -11992.1719 65.3438 moveto +31412.1719 65.3438 moveto P$b -11992.1719 62.3594 moveto +31412.1719 62.3594 moveto P$c -12003.2656 66.6094 moveto +31423.2656 66.6094 moveto P$3 -12012.625 71.8906 moveto +31432.625 71.8906 moveto P$q -12014.25 66.9375 moveto +31434.25 66.9375 moveto P$r -12020.1719 62.3594 moveto -P$l -12031.8125 69.1563 moveto +31440.1719 62.3594 moveto +P$o +31451.8125 69.1563 moveto +P$i +31449.2969 68.3438 moveto P$j -12029.2969 68.3438 moveto -P$k fill 0.7843 0.7843 0.7843 setrgbcolor newpath -11786 959 moveto +9155 959 moveto 216 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -227 0 rlineto 0 -100 rlineto -11786 959 lineto +9155 959 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -11786.5 959.5 moveto +9155.5 959.5 moveto 215 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -226 0 rlineto 0 -99 rlineto -11786.5 959.5 lineto +9155.5 959.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -11787 960 moveto +9156 960 moveto 214 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -225 0 rlineto 0 -98 rlineto -11787 960 lineto +9156 960 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -11787.5 960.5 moveto +9156.5 960.5 moveto 213 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -224 0 rlineto 0 -97 rlineto -11787.5 960.5 lineto +9156.5 960.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -11788 961 moveto +9157 961 moveto 212 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -223 0 rlineto 0 -96 rlineto -11788 961 lineto +9157 961 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -11788.5 961.5 moveto +9157.5 961.5 moveto 211 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -222 0 rlineto 0 -95 rlineto -11788.5 961.5 lineto +9157.5 961.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -11789 962 moveto +9158 962 moveto 210 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -221 0 rlineto 0 -94 rlineto -11789 962 lineto +9158 962 lineto closepath eofill 1 1 1 setrgbcolor newpath -11783 956 moveto +9152 956 moveto 216 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -227 0 rlineto 0 -100 rlineto -11783 956 lineto +9152 956 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -11783 956 moveto +9152 956 moveto 216 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -227 0 rlineto 0 -100 rlineto -11783 956 lineto +9152 956 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -11783 978.2969 moveto +9152 978.2969 moveto 223 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -11793.3594 965.5781 moveto +9162.3594 965.5781 moveto P$0 -11799.8125 966.9063 moveto +9168.8125 966.9063 moveto P$1 -11799.8125 965.1563 moveto +9168.8125 965.1563 moveto P$2 -11813.2656 966.6094 moveto +9182.2656 966.6094 moveto P$3 -11820.4219 970.3594 moveto +9189.4219 970.3594 moveto P$4 -11828.6094 969.5469 moveto +9197.6094 969.5469 moveto P$5 -11832.3438 968.625 moveto +9201.3438 968.625 moveto P$6 -11839.8594 967.4219 moveto +9208.8594 967.4219 moveto P$7 -11847.1563 965.5781 moveto +9216.1563 965.5781 moveto P$8 -11855.3906 966.4688 moveto +9224.3906 966.4688 moveto P$9 -11853.7656 971.4219 moveto +9222.7656 971.4219 moveto P$a -11860.1719 965.3438 moveto +9229.1719 965.3438 moveto P$b -11860.1719 962.3594 moveto +9229.1719 962.3594 moveto P$c -11869.3906 971.7031 moveto +9238.3906 971.7031 moveto P$d -11867.7656 966.9375 moveto +9236.7656 966.9375 moveto P$e -11874.1719 965.3438 moveto +9243.1719 965.3438 moveto P$b -11874.1719 962.3594 moveto +9243.1719 962.3594 moveto P$c -11880.8438 963.1719 moveto +9249.8438 963.1719 moveto P$f -11887.6094 969.5469 moveto +9256.6094 969.5469 moveto P$5 -11891.3438 968.625 moveto +9260.3438 968.625 moveto P$6 -11893.4219 970.3594 moveto +9262.4219 970.3594 moveto P$4 -11903.3906 971.7031 moveto +9272.3906 971.7031 moveto P$d -11901.7656 966.9375 moveto +9270.7656 966.9375 moveto P$e -11908.1719 962.3594 moveto -P$l -11915.8125 966.9063 moveto -P$1 -11915.8125 965.1563 moveto -P$2 -11926.25 971.4219 moveto +9277.1719 962.3594 moveto P$o -11924.625 966.4688 moveto -P$p -11935.6094 969.5469 moveto -P$5 -11939.3438 968.625 moveto -P$6 -11941.1719 962.3594 moveto -P$l -11945.1719 965.3438 moveto -P$b -11945.1719 962.3594 moveto -P$c -11948.7969 965.3438 moveto -P$m -11961.6094 969.5469 moveto -P$5 -11965.3438 968.625 moveto -P$6 -11969.8438 963.1719 moveto -P$f -11973.1719 965.3438 moveto -P$b -11973.1719 962.3594 moveto -P$c -11980.8125 966.9063 moveto +9284.8125 966.9063 moveto P$1 -11980.8125 965.1563 moveto +9284.8125 965.1563 moveto P$2 -11994.875 968.3438 moveto -P$h +9295.25 971.4219 moveto +P$k +9293.625 966.4688 moveto +P$l +9304.6094 969.5469 moveto +P$5 +9308.3438 968.625 moveto +P$6 +9310.1719 962.3594 moveto +P$o +9314.1719 965.3438 moveto +P$b +9314.1719 962.3594 moveto +P$c +9317.7969 965.3438 moveto +P$p +9330.6094 969.5469 moveto +P$5 +9334.3438 968.625 moveto +P$6 +9338.8438 963.1719 moveto +P$f +9342.1719 965.3438 moveto +P$b +9342.1719 962.3594 moveto +P$c +9349.8125 966.9063 moveto +P$1 +9349.8125 965.1563 moveto +P$2 +9363.875 968.3438 moveto +P$g fill 0.7843 0.7843 0.7843 setrgbcolor newpath -7698 555 moveto +25483 679 moveto 209 0 rlineto 7 22.2969 rlineto 510 0 rlineto -0 341.7031 rlineto +0 357.7031 rlineto -726 0 rlineto -0 -364 rlineto -7698 555 lineto +0 -380 rlineto +25483 679 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -7698.5 555.5 moveto +25483.5 679.5 moveto 209 0 rlineto 7 22.2969 rlineto 509 0 rlineto -0 340.7031 rlineto +0 356.7031 rlineto -725 0 rlineto -0 -363 rlineto -7698.5 555.5 lineto +0 -379 rlineto +25483.5 679.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -7699 556 moveto +25484 680 moveto 209 0 rlineto 7 22.2969 rlineto 508 0 rlineto -0 339.7031 rlineto +0 355.7031 rlineto -724 0 rlineto -0 -362 rlineto -7699 556 lineto +0 -378 rlineto +25484 680 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -7699.5 556.5 moveto +25484.5 680.5 moveto 209 0 rlineto 7 22.2969 rlineto 507 0 rlineto -0 338.7031 rlineto +0 354.7031 rlineto -723 0 rlineto -0 -361 rlineto -7699.5 556.5 lineto +0 -377 rlineto +25484.5 680.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -7700 557 moveto +25485 681 moveto 209 0 rlineto 7 22.2969 rlineto 506 0 rlineto -0 337.7031 rlineto +0 353.7031 rlineto -722 0 rlineto -0 -360 rlineto -7700 557 lineto +0 -376 rlineto +25485 681 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -7700.5 557.5 moveto +25485.5 681.5 moveto 209 0 rlineto 7 22.2969 rlineto 505 0 rlineto -0 336.7031 rlineto +0 352.7031 rlineto -721 0 rlineto -0 -359 rlineto -7700.5 557.5 lineto +0 -375 rlineto +25485.5 681.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -7701 558 moveto +25486 682 moveto 209 0 rlineto 7 22.2969 rlineto 504 0 rlineto -0 335.7031 rlineto +0 351.7031 rlineto -720 0 rlineto -0 -358 rlineto -7701 558 lineto +0 -374 rlineto +25486 682 lineto closepath eofill 1 1 1 setrgbcolor newpath -7695 552 moveto +25480 676 moveto 209 0 rlineto 7 22.2969 rlineto 510 0 rlineto -0 341.7031 rlineto +0 357.7031 rlineto -726 0 rlineto -0 -364 rlineto -7695 552 lineto +0 -380 rlineto +25480 676 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7695 552 moveto +25480 676 moveto 209 0 rlineto 7 22.2969 rlineto 510 0 rlineto -0 341.7031 rlineto +0 357.7031 rlineto -726 0 rlineto -0 -364 rlineto -7695 552 lineto +0 -380 rlineto +25480 676 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7695 574.2969 moveto +25480 698.2969 moveto 216 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -7705.3594 561.5781 moveto +25490.3594 685.5781 moveto P$0 -7711.8125 562.9063 moveto +25496.8125 686.9063 moveto P$1 -7711.8125 561.1563 moveto +25496.8125 685.1563 moveto P$2 -7725.2656 562.6094 moveto +25510.2656 686.6094 moveto P$3 -7732.4219 566.3594 moveto +25517.4219 690.3594 moveto P$4 -7740.6094 565.5469 moveto +25525.6094 689.5469 moveto P$5 -7744.3438 564.625 moveto +25529.3438 688.625 moveto P$6 -7751.8594 563.4219 moveto +25536.8594 687.4219 moveto P$7 -7759.1563 561.5781 moveto +25544.1563 685.5781 moveto P$8 -7767.3906 562.4688 moveto +25552.3906 686.4688 moveto P$9 -7765.7656 567.4219 moveto +25550.7656 691.4219 moveto P$a -7772.1719 561.3438 moveto +25557.1719 685.3438 moveto P$b -7772.1719 558.3594 moveto +25557.1719 682.3594 moveto P$c -7781.3906 567.7031 moveto +25566.3906 691.7031 moveto P$d -7779.7656 562.9375 moveto +25564.7656 686.9375 moveto P$e -7786.1719 561.3438 moveto +25571.1719 685.3438 moveto P$b -7786.1719 558.3594 moveto +25571.1719 682.3594 moveto P$c -7792.8438 559.1719 moveto +25577.8438 683.1719 moveto P$f -7799.6094 565.5469 moveto +25584.6094 689.5469 moveto P$5 -7803.3438 564.625 moveto +25588.3438 688.625 moveto P$6 -7805.4219 566.3594 moveto +25590.4219 690.3594 moveto P$4 -7815.2188 558.3594 moveto +25600.2188 682.3594 moveto P$w -7819.8125 562.9063 moveto +25604.8125 686.9063 moveto P$1 -7819.8125 561.1563 moveto +25604.8125 685.1563 moveto P$2 -7831.8594 563.4219 moveto +25616.8594 687.4219 moveto P$7 -7840.2656 562.6094 moveto +25625.2656 686.6094 moveto P$3 -7851.25 567.4219 moveto -P$o -7849.625 562.4688 moveto -P$p -7857.0938 566.0156 moveto -P$g -7867.1719 561.3438 moveto -P$b -7867.1719 558.3594 moveto -P$c -7871.1719 558.3594 moveto -P$l -7880.3906 562.4688 moveto -P$9 -7878.7656 567.4219 moveto -P$a -7892.8125 565.1563 moveto -P$j -7890.2969 564.3438 moveto +25636.25 691.4219 moveto P$k -7900.8594 563.4219 moveto +25634.625 686.4688 moveto +P$l +25642.0938 690.0156 moveto +P$m +25652.1719 685.3438 moveto +P$b +25652.1719 682.3594 moveto +P$c +25656.1719 682.3594 moveto +P$o +25665.3906 686.4688 moveto +P$9 +25663.7656 691.4219 moveto +P$a +25677.8125 689.1563 moveto +P$i +25675.2969 688.3438 moveto +P$j +25685.8594 687.4219 moveto P$7 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -4948 307 moveto +14197 307 moveto 267 0 rlineto 7 22.2969 rlineto 959 0 rlineto 0 201.7031 rlineto -1233 0 rlineto 0 -224 rlineto -4948 307 lineto +14197 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -4948.5 307.5 moveto +14197.5 307.5 moveto 267 0 rlineto 7 22.2969 rlineto 958 0 rlineto 0 200.7031 rlineto -1232 0 rlineto 0 -223 rlineto -4948.5 307.5 lineto +14197.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -4949 308 moveto +14198 308 moveto 267 0 rlineto 7 22.2969 rlineto 957 0 rlineto 0 199.7031 rlineto -1231 0 rlineto 0 -222 rlineto -4949 308 lineto +14198 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -4949.5 308.5 moveto +14198.5 308.5 moveto 267 0 rlineto 7 22.2969 rlineto 956 0 rlineto 0 198.7031 rlineto -1230 0 rlineto 0 -221 rlineto -4949.5 308.5 lineto +14198.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -4950 309 moveto +14199 309 moveto 267 0 rlineto 7 22.2969 rlineto 955 0 rlineto 0 197.7031 rlineto -1229 0 rlineto 0 -220 rlineto -4950 309 lineto +14199 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -4950.5 309.5 moveto +14199.5 309.5 moveto 267 0 rlineto 7 22.2969 rlineto 954 0 rlineto 0 196.7031 rlineto -1228 0 rlineto 0 -219 rlineto -4950.5 309.5 lineto +14199.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -4951 310 moveto +14200 310 moveto 267 0 rlineto 7 22.2969 rlineto 953 0 rlineto 0 195.7031 rlineto -1227 0 rlineto 0 -218 rlineto -4951 310 lineto +14200 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -4945 304 moveto +14194 304 moveto 267 0 rlineto 7 22.2969 rlineto 959 0 rlineto 0 201.7031 rlineto -1233 0 rlineto 0 -224 rlineto -4945 304 lineto +14194 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -4945 304 moveto +14194 304 moveto 267 0 rlineto 7 22.2969 rlineto 959 0 rlineto 0 201.7031 rlineto -1233 0 rlineto 0 -224 rlineto -4945 304 lineto +14194 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -4945 326.2969 moveto +14194 326.2969 moveto 274 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -4955.3594 313.5781 moveto +14204.3594 313.5781 moveto P$0 -4961.8125 314.9063 moveto +14210.8125 314.9063 moveto P$1 -4961.8125 313.1563 moveto +14210.8125 313.1563 moveto P$2 -4975.2656 314.6094 moveto +14224.2656 314.6094 moveto P$3 -4982.4219 318.3594 moveto +14231.4219 318.3594 moveto P$4 -4990.6094 317.5469 moveto +14239.6094 317.5469 moveto P$5 -4994.3438 316.625 moveto +14243.3438 316.625 moveto P$6 -5001.8594 315.4219 moveto +14250.8594 315.4219 moveto P$7 -5009.1563 313.5781 moveto +14258.1563 313.5781 moveto P$8 -5017.3906 314.4688 moveto +14266.3906 314.4688 moveto P$9 -5015.7656 319.4219 moveto +14264.7656 319.4219 moveto P$a -5022.1719 313.3438 moveto +14271.1719 313.3438 moveto P$b -5022.1719 310.3594 moveto +14271.1719 310.3594 moveto P$c -5031.3906 319.7031 moveto +14280.3906 319.7031 moveto P$d -5029.7656 314.9375 moveto +14278.7656 314.9375 moveto P$e -5036.1719 313.3438 moveto +14285.1719 313.3438 moveto P$b -5036.1719 310.3594 moveto +14285.1719 310.3594 moveto P$c -5042.8438 311.1719 moveto +14291.8438 311.1719 moveto P$f -5049.6094 317.5469 moveto +14298.6094 317.5469 moveto P$5 -5053.3438 316.625 moveto +14302.3438 316.625 moveto P$6 -5055.4219 318.3594 moveto +14304.4219 318.3594 moveto P$4 -5066.3594 313.5781 moveto +14315.3594 313.5781 moveto P$0 -5076.2656 314.6094 moveto +14325.2656 314.6094 moveto P$3 -5089.1563 313.5781 moveto +14338.1563 313.5781 moveto P$8 -5092.4219 318.3594 moveto +14341.4219 318.3594 moveto P$4 -5103.3594 313.5781 moveto +14352.3594 313.5781 moveto P$0 -5109.8125 314.9063 moveto +14358.8125 314.9063 moveto P$1 -5109.8125 313.1563 moveto +14358.8125 313.1563 moveto P$2 -5123.875 316.3438 moveto -P$h -5128.8438 311.1719 moveto +14372.875 316.3438 moveto +P$g +14377.8438 311.1719 moveto P$f -5139.8125 317.1563 moveto +14388.8125 317.1563 moveto +P$i +14386.2969 316.3438 moveto P$j -5137.2969 316.3438 moveto -P$k -5149.875 316.3438 moveto -P$h -5154.8438 311.1719 moveto +14398.875 316.3438 moveto +P$g +14403.8438 311.1719 moveto P$f -5161.6094 317.5469 moveto +14410.6094 317.5469 moveto P$5 -5165.3438 316.625 moveto +14414.3438 316.625 moveto P$6 -5173.1563 313.5781 moveto +14422.1563 313.5781 moveto P$8 -5182.1563 313.5781 moveto +14431.1563 313.5781 moveto P$8 -5192.8125 317.1563 moveto +14441.8125 317.1563 moveto +P$i +14439.2969 316.3438 moveto P$j -5190.2969 316.3438 moveto -P$k -5197.8438 311.1719 moveto +14446.8438 311.1719 moveto P$f -5207.1563 313.5781 moveto +14456.1563 313.5781 moveto P$8 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -8637 679 moveto +4572 679 moveto 259 0 rlineto 7 22.2969 rlineto -2164 0 rlineto -0 465.7031 rlineto --2430 0 rlineto -0 -488 rlineto -8637 679 lineto +4273 0 rlineto +0 481.7031 rlineto +-4539 0 rlineto +0 -504 rlineto +4572 679 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -8637.5 679.5 moveto +4572.5 679.5 moveto 259 0 rlineto 7 22.2969 rlineto -2163 0 rlineto -0 464.7031 rlineto --2429 0 rlineto -0 -487 rlineto -8637.5 679.5 lineto +4272 0 rlineto +0 480.7031 rlineto +-4538 0 rlineto +0 -503 rlineto +4572.5 679.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -8638 680 moveto +4573 680 moveto 259 0 rlineto 7 22.2969 rlineto -2162 0 rlineto -0 463.7031 rlineto --2428 0 rlineto -0 -486 rlineto -8638 680 lineto +4271 0 rlineto +0 479.7031 rlineto +-4537 0 rlineto +0 -502 rlineto +4573 680 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -8638.5 680.5 moveto +4573.5 680.5 moveto 259 0 rlineto 7 22.2969 rlineto -2161 0 rlineto -0 462.7031 rlineto --2427 0 rlineto -0 -485 rlineto -8638.5 680.5 lineto +4270 0 rlineto +0 478.7031 rlineto +-4536 0 rlineto +0 -501 rlineto +4573.5 680.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -8639 681 moveto +4574 681 moveto 259 0 rlineto 7 22.2969 rlineto -2160 0 rlineto -0 461.7031 rlineto --2426 0 rlineto -0 -484 rlineto -8639 681 lineto +4269 0 rlineto +0 477.7031 rlineto +-4535 0 rlineto +0 -500 rlineto +4574 681 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -8639.5 681.5 moveto +4574.5 681.5 moveto 259 0 rlineto 7 22.2969 rlineto -2159 0 rlineto -0 460.7031 rlineto --2425 0 rlineto -0 -483 rlineto -8639.5 681.5 lineto +4268 0 rlineto +0 476.7031 rlineto +-4534 0 rlineto +0 -499 rlineto +4574.5 681.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -8640 682 moveto +4575 682 moveto 259 0 rlineto 7 22.2969 rlineto -2158 0 rlineto -0 459.7031 rlineto --2424 0 rlineto -0 -482 rlineto -8640 682 lineto +4267 0 rlineto +0 475.7031 rlineto +-4533 0 rlineto +0 -498 rlineto +4575 682 lineto closepath eofill 1 1 1 setrgbcolor newpath -8634 676 moveto +4569 676 moveto 259 0 rlineto 7 22.2969 rlineto -2164 0 rlineto -0 465.7031 rlineto --2430 0 rlineto -0 -488 rlineto -8634 676 lineto +4273 0 rlineto +0 481.7031 rlineto +-4539 0 rlineto +0 -504 rlineto +4569 676 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -8634 676 moveto +4569 676 moveto 259 0 rlineto 7 22.2969 rlineto -2164 0 rlineto -0 465.7031 rlineto --2430 0 rlineto -0 -488 rlineto -8634 676 lineto +4273 0 rlineto +0 481.7031 rlineto +-4539 0 rlineto +0 -504 rlineto +4569 676 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -8634 698.2969 moveto +4569 698.2969 moveto 266 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -8644.3594 685.5781 moveto +4579.3594 685.5781 moveto P$0 -8650.8125 686.9063 moveto +4585.8125 686.9063 moveto P$1 -8650.8125 685.1563 moveto +4585.8125 685.1563 moveto P$2 -8664.2656 686.6094 moveto +4599.2656 686.6094 moveto P$3 -8671.4219 690.3594 moveto +4606.4219 690.3594 moveto P$4 -8679.6094 689.5469 moveto +4614.6094 689.5469 moveto P$5 -8683.3438 688.625 moveto +4618.3438 688.625 moveto P$6 -8690.8594 687.4219 moveto +4625.8594 687.4219 moveto P$7 -8698.1563 685.5781 moveto +4633.1563 685.5781 moveto P$8 -8706.3906 686.4688 moveto +4641.3906 686.4688 moveto P$9 -8704.7656 691.4219 moveto +4639.7656 691.4219 moveto P$a -8711.1719 685.3438 moveto +4646.1719 685.3438 moveto P$b -8711.1719 682.3594 moveto +4646.1719 682.3594 moveto P$c -8720.3906 691.7031 moveto +4655.3906 691.7031 moveto P$d -8718.7656 686.9375 moveto +4653.7656 686.9375 moveto P$e -8725.1719 685.3438 moveto +4660.1719 685.3438 moveto P$b -8725.1719 682.3594 moveto +4660.1719 682.3594 moveto P$c -8731.8438 683.1719 moveto +4666.8438 683.1719 moveto P$f -8738.6094 689.5469 moveto +4673.6094 689.5469 moveto P$5 -8742.3438 688.625 moveto +4677.3438 688.625 moveto P$6 -8744.4219 690.3594 moveto +4679.4219 690.3594 moveto P$4 -8755.3594 685.5781 moveto +4690.3594 685.5781 moveto P$0 -8765.2656 686.6094 moveto +4700.2656 686.6094 moveto P$3 -8778.1563 685.5781 moveto +4713.1563 685.5781 moveto P$8 -8781.4219 690.3594 moveto +4716.4219 690.3594 moveto P$4 -8792.3594 685.5781 moveto +4727.3594 685.5781 moveto P$0 -8798.8125 686.9063 moveto +4733.8125 686.9063 moveto P$1 -8798.8125 685.1563 moveto +4733.8125 685.1563 moveto P$2 -8812.875 688.3438 moveto -P$h -8817.8438 683.1719 moveto +4747.875 688.3438 moveto +P$g +4752.8438 683.1719 moveto P$f -8828.8125 689.1563 moveto +4763.8125 689.1563 moveto +P$i +4761.2969 688.3438 moveto P$j -8826.2969 688.3438 moveto -P$k -8838.875 688.3438 moveto -P$h -8843.8438 683.1719 moveto +4773.875 688.3438 moveto +P$g +4778.8438 683.1719 moveto P$f -8849.8438 683.1719 moveto +4784.8438 683.1719 moveto P$f -8852.1719 685.3438 moveto +4787.1719 685.3438 moveto P$t -8864.625 691.8906 moveto +4799.625 691.8906 moveto P$q -8866.25 686.9375 moveto +4801.25 686.9375 moveto P$r -8879.8125 689.1563 moveto +4814.8125 689.1563 moveto +P$i +4812.2969 688.3438 moveto P$j -8877.2969 688.3438 moveto -P$k -8888.1563 685.5781 moveto +4823.1563 685.5781 moveto P$8 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -289 307 moveto -207 0 rlineto +27825 555 moveto +327 0 rlineto 7 22.2969 rlineto -537 0 rlineto +4 0 rlineto 0 77.7031 rlineto --751 0 rlineto +-338 0 rlineto 0 -100 rlineto -289 307 lineto +27825 555 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -289.5 307.5 moveto -207 0 rlineto +27825.5 555.5 moveto +326 0 rlineto 7 22.2969 rlineto -536 0 rlineto +4 0 rlineto 0 76.7031 rlineto --750 0 rlineto +-337 0 rlineto 0 -99 rlineto -289.5 307.5 lineto +27825.5 555.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -290 308 moveto -207 0 rlineto +27826 556 moveto +325 0 rlineto 7 22.2969 rlineto -535 0 rlineto +4 0 rlineto 0 75.7031 rlineto --749 0 rlineto +-336 0 rlineto 0 -98 rlineto -290 308 lineto +27826 556 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -290.5 308.5 moveto -207 0 rlineto +27826.5 556.5 moveto +324 0 rlineto 7 22.2969 rlineto -534 0 rlineto +4 0 rlineto 0 74.7031 rlineto --748 0 rlineto +-335 0 rlineto 0 -97 rlineto -290.5 308.5 lineto +27826.5 556.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -291 309 moveto -207 0 rlineto +27827 557 moveto +323 0 rlineto 7 22.2969 rlineto -533 0 rlineto +4 0 rlineto 0 73.7031 rlineto --747 0 rlineto +-334 0 rlineto 0 -96 rlineto -291 309 lineto +27827 557 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -291.5 309.5 moveto -207 0 rlineto +27827.5 557.5 moveto +322 0 rlineto 7 22.2969 rlineto -532 0 rlineto +4 0 rlineto 0 72.7031 rlineto --746 0 rlineto +-333 0 rlineto 0 -95 rlineto -291.5 309.5 lineto +27827.5 557.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -292 310 moveto -207 0 rlineto +27828 558 moveto +321 0 rlineto 7 22.2969 rlineto -531 0 rlineto +4 0 rlineto 0 71.7031 rlineto --745 0 rlineto +-332 0 rlineto 0 -94 rlineto -292 310 lineto +27828 558 lineto closepath eofill 1 1 1 setrgbcolor newpath -286 304 moveto -207 0 rlineto +27822 552 moveto +327 0 rlineto 7 22.2969 rlineto -537 0 rlineto +4 0 rlineto 0 77.7031 rlineto --751 0 rlineto +-338 0 rlineto 0 -100 rlineto -286 304 lineto +27822 552 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -286 304 moveto -207 0 rlineto +27822 552 moveto +327 0 rlineto 7 22.2969 rlineto -537 0 rlineto +4 0 rlineto 0 77.7031 rlineto --751 0 rlineto +-338 0 rlineto 0 -100 rlineto -286 304 lineto +27822 552 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -286 326.2969 moveto -214 0 rlineto +27822 574.2969 moveto +334 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -296.3594 313.5781 moveto +27832.3594 561.5781 moveto P$0 -302.8125 314.9063 moveto +27838.8125 562.9063 moveto P$1 -302.8125 313.1563 moveto +27838.8125 561.1563 moveto P$2 -316.2656 314.6094 moveto +27852.2656 562.6094 moveto P$3 -323.4219 318.3594 moveto +27859.4219 566.3594 moveto P$4 -331.6094 317.5469 moveto +27867.6094 565.5469 moveto P$5 -335.3438 316.625 moveto +27871.3438 564.625 moveto P$6 -342.8594 315.4219 moveto +27878.8594 563.4219 moveto P$7 -350.1563 313.5781 moveto +27886.1563 561.5781 moveto P$8 -358.3906 314.4688 moveto +27894.3906 562.4688 moveto P$9 -356.7656 319.4219 moveto +27892.7656 567.4219 moveto P$a -363.1719 313.3438 moveto +27899.1719 561.3438 moveto P$b -363.1719 310.3594 moveto +27899.1719 558.3594 moveto P$c -372.3906 319.7031 moveto +27908.3906 567.7031 moveto P$d -370.7656 314.9375 moveto +27906.7656 562.9375 moveto P$e -377.1719 313.3438 moveto +27913.1719 561.3438 moveto P$b -377.1719 310.3594 moveto +27913.1719 558.3594 moveto P$c -383.8438 311.1719 moveto +27919.8438 559.1719 moveto P$f -390.6094 317.5469 moveto +27926.6094 565.5469 moveto P$5 -394.3438 316.625 moveto +27930.3438 564.625 moveto P$6 -396.4219 318.3594 moveto +27932.4219 566.3594 moveto P$4 -407.3594 313.5781 moveto +27943.3594 561.5781 moveto P$0 -417.2656 314.6094 moveto +27953.2656 562.6094 moveto P$3 -430.1563 313.5781 moveto +27966.1563 561.5781 moveto P$8 -433.4219 318.3594 moveto +27969.4219 566.3594 moveto P$4 -440.625 319.8906 moveto -P$q -442.25 314.9375 moveto -P$r -451.8125 314.9063 moveto +27980.3594 561.5781 moveto +P$0 +27986.8125 562.9063 moveto P$1 -451.8125 313.1563 moveto +27986.8125 561.1563 moveto P$2 -463.8594 315.4219 moveto -P$7 -467.8438 311.1719 moveto +28000.875 564.3438 moveto +P$g +28005.8438 559.1719 moveto P$f -471.1719 310.3594 moveto -P$l -482.8125 317.1563 moveto +28016.8125 565.1563 moveto +P$i +28014.2969 564.3438 moveto P$j -480.2969 316.3438 moveto -P$k -487.8438 311.1719 moveto +28026.875 564.3438 moveto +P$g +28031.8438 559.1719 moveto P$f +28037.8438 559.1719 moveto +P$f +28040.1719 561.3438 moveto +P$t +28052.625 567.8906 moveto +P$q +28054.25 562.9375 moveto +P$r +28067.8125 565.1563 moveto +P$i +28065.2969 564.3438 moveto +P$j +28076.1563 561.5781 moveto +P$8 +28079.4219 566.3594 moveto +P$4 +28086.1094 565.0781 moveto +P$s +28100.2656 562.6094 moveto +P$3 +28107.1719 558.3594 moveto +P$o +28116.2188 558.3594 moveto +P$w +28124.8125 565.1563 moveto +P$i +28122.2969 564.3438 moveto +P$j +28134.8125 565.1563 moveto +P$i +28132.2969 564.3438 moveto +P$j +28142.3906 562.4688 moveto +P$9 +28140.7656 567.4219 moveto +P$a fill 0.7843 0.7843 0.7843 setrgbcolor newpath -25 59 moveto +9495 679 moveto +246 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 217.7031 rlineto +-466 0 rlineto +0 -240 rlineto +9495 679 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +9495.5 679.5 moveto +245 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 216.7031 rlineto +-465 0 rlineto +0 -239 rlineto +9495.5 679.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +9496 680 moveto +244 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 215.7031 rlineto +-464 0 rlineto +0 -238 rlineto +9496 680 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +9496.5 680.5 moveto +243 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 214.7031 rlineto +-463 0 rlineto +0 -237 rlineto +9496.5 680.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +9497 681 moveto +242 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 213.7031 rlineto +-462 0 rlineto +0 -236 rlineto +9497 681 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +9497.5 681.5 moveto +241 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 212.7031 rlineto +-461 0 rlineto +0 -235 rlineto +9497.5 681.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +9498 682 moveto +240 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 211.7031 rlineto +-460 0 rlineto +0 -234 rlineto +9498 682 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +9492 676 moveto +246 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 217.7031 rlineto +-466 0 rlineto +0 -240 rlineto +9492 676 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +9492 676 moveto +246 0 rlineto +7 22.2969 rlineto +213 0 rlineto +0 217.7031 rlineto +-466 0 rlineto +0 -240 rlineto +9492 676 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +9492 698.2969 moveto +253 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9502.3594 685.5781 moveto +P$0 +9508.8125 686.9063 moveto +P$1 +9508.8125 685.1563 moveto +P$2 +9522.2656 686.6094 moveto +P$3 +9529.4219 690.3594 moveto +P$4 +9537.6094 689.5469 moveto +P$5 +9541.3438 688.625 moveto +P$6 +9548.8594 687.4219 moveto +P$7 +9556.1563 685.5781 moveto +P$8 +9564.3906 686.4688 moveto +P$9 +9562.7656 691.4219 moveto +P$a +9569.1719 685.3438 moveto +P$b +9569.1719 682.3594 moveto +P$c +9578.3906 691.7031 moveto +P$d +9576.7656 686.9375 moveto +P$e +9583.1719 685.3438 moveto +P$b +9583.1719 682.3594 moveto +P$c +9589.8438 683.1719 moveto +P$f +9596.6094 689.5469 moveto +P$5 +9600.3438 688.625 moveto +P$6 +9602.4219 690.3594 moveto +P$4 +9613.3594 685.5781 moveto +P$0 +9623.2656 686.6094 moveto +P$3 +9636.1563 685.5781 moveto +P$8 +9639.4219 690.3594 moveto +P$4 +9649.2188 682.3594 moveto +P$w +9653.8125 686.9063 moveto +P$1 +9653.8125 685.1563 moveto +P$2 +9665.8594 687.4219 moveto +P$7 +9674.2656 686.6094 moveto +P$3 +9685.25 691.4219 moveto +P$k +9683.625 686.4688 moveto +P$l +9691.0938 690.0156 moveto +P$m +9701.1719 685.3438 moveto +P$b +9701.1719 682.3594 moveto +P$c +9705.1719 682.3594 moveto +P$o +9714.3906 686.4688 moveto +P$9 +9712.7656 691.4219 moveto +P$a +9726.8125 689.1563 moveto +P$i +9724.2969 688.3438 moveto +P$j +9734.8594 687.4219 moveto +P$7 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +28187 555 moveto +219 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-230 0 rlineto +0 -100 rlineto +28187 555 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +28187.5 555.5 moveto +218 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-229 0 rlineto +0 -99 rlineto +28187.5 555.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +28188 556 moveto +217 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-228 0 rlineto +0 -98 rlineto +28188 556 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +28188.5 556.5 moveto +216 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-227 0 rlineto +0 -97 rlineto +28188.5 556.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +28189 557 moveto +215 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-226 0 rlineto +0 -96 rlineto +28189 557 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +28189.5 557.5 moveto +214 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-225 0 rlineto +0 -95 rlineto +28189.5 557.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +28190 558 moveto +213 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-224 0 rlineto +0 -94 rlineto +28190 558 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +28184 552 moveto +219 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-230 0 rlineto +0 -100 rlineto +28184 552 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28184 552 moveto +219 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-230 0 rlineto +0 -100 rlineto +28184 552 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28184 574.2969 moveto +226 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28194.3594 561.5781 moveto +P$0 +28200.8125 562.9063 moveto +P$1 +28200.8125 561.1563 moveto +P$2 +28214.2656 562.6094 moveto +P$3 +28221.4219 566.3594 moveto +P$4 +28229.6094 565.5469 moveto +P$5 +28233.3438 564.625 moveto +P$6 +28240.8594 563.4219 moveto +P$7 +28248.1563 561.5781 moveto +P$8 +28256.3906 562.4688 moveto +P$9 +28254.7656 567.4219 moveto +P$a +28261.1719 561.3438 moveto +P$b +28261.1719 558.3594 moveto +P$c +28270.3906 567.7031 moveto +P$d +28268.7656 562.9375 moveto +P$e +28275.1719 561.3438 moveto +P$b +28275.1719 558.3594 moveto +P$c +28281.8438 559.1719 moveto +P$f +28288.6094 565.5469 moveto +P$5 +28292.3438 564.625 moveto +P$6 +28294.4219 566.3594 moveto +P$4 +28304.2188 558.3594 moveto +P$w +28308.8125 562.9063 moveto +P$1 +28308.8125 561.1563 moveto +P$2 +28320.8594 563.4219 moveto +P$7 +28329.2656 562.6094 moveto +P$3 +28340.25 567.4219 moveto +P$k +28338.625 562.4688 moveto +P$l +28346.0938 566.0156 moveto +P$m +28359.8125 562.9063 moveto +P$1 +28359.8125 561.1563 moveto +P$2 +28366.1719 561.3438 moveto +P$b +28366.1719 558.3594 moveto +P$c +28370.1719 558.3594 moveto +P$o +28379.3906 562.4688 moveto +P$9 +28377.7656 567.4219 moveto +P$a +28391.8125 565.1563 moveto +P$i +28389.2969 564.3438 moveto +P$j +28399.8594 563.4219 moveto +P$7 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +10103 555 moveto +214 0 rlineto +7 22.2969 rlineto +678 0 rlineto +0 341.7031 rlineto +-899 0 rlineto +0 -364 rlineto +10103 555 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +10103.5 555.5 moveto +214 0 rlineto +7 22.2969 rlineto +677 0 rlineto +0 340.7031 rlineto +-898 0 rlineto +0 -363 rlineto +10103.5 555.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +10104 556 moveto +214 0 rlineto +7 22.2969 rlineto +676 0 rlineto +0 339.7031 rlineto +-897 0 rlineto +0 -362 rlineto +10104 556 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +10104.5 556.5 moveto +214 0 rlineto +7 22.2969 rlineto +675 0 rlineto +0 338.7031 rlineto +-896 0 rlineto +0 -361 rlineto +10104.5 556.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +10105 557 moveto +214 0 rlineto +7 22.2969 rlineto +674 0 rlineto +0 337.7031 rlineto +-895 0 rlineto +0 -360 rlineto +10105 557 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +10105.5 557.5 moveto +214 0 rlineto +7 22.2969 rlineto +673 0 rlineto +0 336.7031 rlineto +-894 0 rlineto +0 -359 rlineto +10105.5 557.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +10106 558 moveto +214 0 rlineto +7 22.2969 rlineto +672 0 rlineto +0 335.7031 rlineto +-893 0 rlineto +0 -358 rlineto +10106 558 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +10100 552 moveto +214 0 rlineto +7 22.2969 rlineto +678 0 rlineto +0 341.7031 rlineto +-899 0 rlineto +0 -364 rlineto +10100 552 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +10100 552 moveto +214 0 rlineto +7 22.2969 rlineto +678 0 rlineto +0 341.7031 rlineto +-899 0 rlineto +0 -364 rlineto +10100 552 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +10100 574.2969 moveto +221 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10110.3594 561.5781 moveto +P$0 +10116.8125 562.9063 moveto +P$1 +10116.8125 561.1563 moveto +P$2 +10130.2656 562.6094 moveto +P$3 +10137.4219 566.3594 moveto +P$4 +10145.6094 565.5469 moveto +P$5 +10149.3438 564.625 moveto +P$6 +10156.8594 563.4219 moveto +P$7 +10164.1563 561.5781 moveto +P$8 +10172.3906 562.4688 moveto +P$9 +10170.7656 567.4219 moveto +P$a +10177.1719 561.3438 moveto +P$b +10177.1719 558.3594 moveto +P$c +10186.3906 567.7031 moveto +P$d +10184.7656 562.9375 moveto +P$e +10191.1719 561.3438 moveto +P$b +10191.1719 558.3594 moveto +P$c +10197.8438 559.1719 moveto +P$f +10204.6094 565.5469 moveto +P$5 +10208.3438 564.625 moveto +P$6 +10210.4219 566.3594 moveto +P$4 +10221.3594 561.5781 moveto +P$0 +10231.2656 562.6094 moveto +P$3 +10244.1563 561.5781 moveto +P$8 +10247.4219 566.3594 moveto +P$4 +10257.3906 562.4688 moveto +P$9 +10255.7656 567.4219 moveto +P$a +10265.8125 562.9063 moveto +P$1 +10265.8125 561.1563 moveto +P$2 +10278.3594 561.5781 moveto +P$0 +10288.2656 562.6094 moveto +P$3 +10300.3906 567.7031 moveto +P$d +10298.7656 562.9375 moveto +P$e +10310.8594 563.4219 moveto +P$7 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +22630 307 moveto +233 0 rlineto +7 22.2969 rlineto +848 0 rlineto +0 77.7031 rlineto +-1088 0 rlineto +0 -100 rlineto +22630 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +22630.5 307.5 moveto +233 0 rlineto +7 22.2969 rlineto +847 0 rlineto +0 76.7031 rlineto +-1087 0 rlineto +0 -99 rlineto +22630.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +22631 308 moveto +233 0 rlineto +7 22.2969 rlineto +846 0 rlineto +0 75.7031 rlineto +-1086 0 rlineto +0 -98 rlineto +22631 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +22631.5 308.5 moveto +233 0 rlineto +7 22.2969 rlineto +845 0 rlineto +0 74.7031 rlineto +-1085 0 rlineto +0 -97 rlineto +22631.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +22632 309 moveto +233 0 rlineto +7 22.2969 rlineto +844 0 rlineto +0 73.7031 rlineto +-1084 0 rlineto +0 -96 rlineto +22632 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +22632.5 309.5 moveto +233 0 rlineto +7 22.2969 rlineto +843 0 rlineto +0 72.7031 rlineto +-1083 0 rlineto +0 -95 rlineto +22632.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +22633 310 moveto +233 0 rlineto +7 22.2969 rlineto +842 0 rlineto +0 71.7031 rlineto +-1082 0 rlineto +0 -94 rlineto +22633 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +22627 304 moveto +233 0 rlineto +7 22.2969 rlineto +848 0 rlineto +0 77.7031 rlineto +-1088 0 rlineto +0 -100 rlineto +22627 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +22627 304 moveto +233 0 rlineto +7 22.2969 rlineto +848 0 rlineto +0 77.7031 rlineto +-1088 0 rlineto +0 -100 rlineto +22627 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +22627 326.2969 moveto +240 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22637.3594 313.5781 moveto +P$0 +22643.8125 314.9063 moveto +P$1 +22643.8125 313.1563 moveto +P$2 +22657.2656 314.6094 moveto +P$3 +22664.4219 318.3594 moveto +P$4 +22672.6094 317.5469 moveto +P$5 +22676.3438 316.625 moveto +P$6 +22683.8594 315.4219 moveto +P$7 +22691.1563 313.5781 moveto +P$8 +22699.3906 314.4688 moveto +P$9 +22697.7656 319.4219 moveto +P$a +22704.1719 313.3438 moveto +P$b +22704.1719 310.3594 moveto +P$c +22713.3906 319.7031 moveto +P$d +22711.7656 314.9375 moveto +P$e +22718.1719 313.3438 moveto +P$b +22718.1719 310.3594 moveto +P$c +22724.8438 311.1719 moveto +P$f +22731.6094 317.5469 moveto +P$5 +22735.3438 316.625 moveto +P$6 +22737.4219 318.3594 moveto +P$4 +22748.3594 313.5781 moveto +P$0 +22758.2656 314.6094 moveto +P$3 +22771.1563 313.5781 moveto +P$8 +22774.4219 318.3594 moveto +P$4 +22784.3906 314.4688 moveto +P$9 +22782.7656 319.4219 moveto +P$a +22792.8125 314.9063 moveto +P$1 +22792.8125 313.1563 moveto +P$2 +22805.3594 313.5781 moveto +P$0 +22815.2656 314.6094 moveto +P$3 +22827.3906 319.7031 moveto +P$d +22825.7656 314.9375 moveto +P$e +22837.8594 315.4219 moveto +P$7 +22839.4219 318.3594 moveto +P$4 +22844.0938 318.0156 moveto +P$m +22854.1719 313.3438 moveto +P$b +22854.1719 310.3594 moveto +P$c +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +18726 59 moveto 163 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 325.7031 rlineto -240 0 rlineto 0 -348 rlineto -25 59 lineto +18726 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -25.5 59.5 moveto +18726.5 59.5 moveto 162 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 324.7031 rlineto -239 0 rlineto 0 -347 rlineto -25.5 59.5 lineto +18726.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -26 60 moveto +18727 60 moveto 161 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 323.7031 rlineto -238 0 rlineto 0 -346 rlineto -26 60 lineto +18727 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -26.5 60.5 moveto +18727.5 60.5 moveto 160 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 322.7031 rlineto -237 0 rlineto 0 -345 rlineto -26.5 60.5 lineto +18727.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -27 61 moveto +18728 61 moveto 159 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 321.7031 rlineto -236 0 rlineto 0 -344 rlineto -27 61 lineto +18728 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -27.5 61.5 moveto +18728.5 61.5 moveto 158 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 320.7031 rlineto -235 0 rlineto 0 -343 rlineto -27.5 61.5 lineto +18728.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -28 62 moveto +18729 62 moveto 157 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 319.7031 rlineto -234 0 rlineto 0 -342 rlineto -28 62 lineto +18729 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -22 56 moveto +18723 56 moveto 163 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 325.7031 rlineto -240 0 rlineto 0 -348 rlineto -22 56 lineto +18723 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -22 56 moveto +18723 56 moveto 163 0 rlineto 7 22.2969 rlineto 70 0 rlineto 0 325.7031 rlineto -240 0 rlineto 0 -348 rlineto -22 56 lineto +18723 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -22 78.2969 moveto +18723 78.2969 moveto 170 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -32.3594 65.5781 moveto +18733.3594 65.5781 moveto P$0 -38.8125 66.9063 moveto +18739.8125 66.9063 moveto P$1 -38.8125 65.1563 moveto +18739.8125 65.1563 moveto P$2 -52.2656 66.6094 moveto +18753.2656 66.6094 moveto P$3 -59.4219 70.3594 moveto +18760.4219 70.3594 moveto P$4 -67.6094 69.5469 moveto +18768.6094 69.5469 moveto P$5 -71.3438 68.625 moveto +18772.3438 68.625 moveto P$6 -78.8594 67.4219 moveto +18779.8594 67.4219 moveto P$7 -86.1563 65.5781 moveto +18787.1563 65.5781 moveto P$8 -94.3906 66.4688 moveto +18795.3906 66.4688 moveto P$9 -92.7656 71.4219 moveto +18793.7656 71.4219 moveto P$a -99.1719 65.3438 moveto +18800.1719 65.3438 moveto P$b -99.1719 62.3594 moveto +18800.1719 62.3594 moveto P$c -108.3906 71.7031 moveto +18809.3906 71.7031 moveto P$d -106.7656 66.9375 moveto +18807.7656 66.9375 moveto P$e -113.1719 65.3438 moveto +18814.1719 65.3438 moveto P$b -113.1719 62.3594 moveto +18814.1719 62.3594 moveto P$c -119.8438 63.1719 moveto +18820.8438 63.1719 moveto P$f -126.6094 69.5469 moveto +18827.6094 69.5469 moveto P$5 -130.3438 68.625 moveto +18831.3438 68.625 moveto P$6 -132.4219 70.3594 moveto +18833.4219 70.3594 moveto P$4 -139.625 71.8906 moveto +18840.625 71.8906 moveto P$q -141.25 66.9375 moveto +18842.25 66.9375 moveto P$r -150.8125 66.9063 moveto +18851.8125 66.9063 moveto P$1 -150.8125 65.1563 moveto +18851.8125 65.1563 moveto P$2 -162.8594 67.4219 moveto +18863.8594 67.4219 moveto P$7 -166.8438 63.1719 moveto +18867.8438 63.1719 moveto P$f -173.6094 69.5469 moveto +18874.6094 69.5469 moveto P$5 -177.3438 68.625 moveto +18878.3438 68.625 moveto P$6 -179.1719 62.3594 moveto -P$l +18880.1719 62.3594 moveto +P$o fill 0.7843 0.7843 0.7843 setrgbcolor newpath -2067 183 moveto +25722 431 moveto +183 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 201.7031 rlineto +-332 0 rlineto +0 -224 rlineto +25722 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +25722.5 431.5 moveto +182 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 200.7031 rlineto +-331 0 rlineto +0 -223 rlineto +25722.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +25723 432 moveto +181 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 199.7031 rlineto +-330 0 rlineto +0 -222 rlineto +25723 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +25723.5 432.5 moveto +180 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 198.7031 rlineto +-329 0 rlineto +0 -221 rlineto +25723.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +25724 433 moveto +179 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 197.7031 rlineto +-328 0 rlineto +0 -220 rlineto +25724 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +25724.5 433.5 moveto +178 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 196.7031 rlineto +-327 0 rlineto +0 -219 rlineto +25724.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +25725 434 moveto +177 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 195.7031 rlineto +-326 0 rlineto +0 -218 rlineto +25725 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +25719 428 moveto +183 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 201.7031 rlineto +-332 0 rlineto +0 -224 rlineto +25719 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25719 428 moveto +183 0 rlineto +7 22.2969 rlineto +142 0 rlineto +0 201.7031 rlineto +-332 0 rlineto +0 -224 rlineto +25719 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25719 450.2969 moveto +190 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25729.3594 437.5781 moveto +P$0 +25735.8125 438.9063 moveto +P$1 +25735.8125 437.1563 moveto +P$2 +25749.2656 438.6094 moveto +P$3 +25756.4219 442.3594 moveto +P$4 +25764.6094 441.5469 moveto +P$5 +25768.3438 440.625 moveto +P$6 +25775.8594 439.4219 moveto +P$7 +25783.1563 437.5781 moveto +P$8 +25791.3906 438.4688 moveto +P$9 +25789.7656 443.4219 moveto +P$a +25796.1719 437.3438 moveto +P$b +25796.1719 434.3594 moveto +P$c +25805.3906 443.7031 moveto +P$d +25803.7656 438.9375 moveto +P$e +25810.1719 437.3438 moveto +P$b +25810.1719 434.3594 moveto +P$c +25816.8438 435.1719 moveto +P$f +25823.6094 441.5469 moveto +P$5 +25827.3438 440.625 moveto +P$6 +25829.4219 442.3594 moveto +P$4 +25839.3906 438.4688 moveto +P$9 +25837.7656 443.4219 moveto +P$a +25847.8125 438.9063 moveto +P$1 +25847.8125 437.1563 moveto +P$2 +25860.3594 437.5781 moveto +P$0 +25868.8594 439.4219 moveto +P$7 +25877.8125 441.1563 moveto +P$i +25875.2969 440.3438 moveto +P$j +25882.625 443.8906 moveto +P$q +25884.25 438.9375 moveto +P$r +25893.8125 438.9063 moveto +P$1 +25893.8125 437.1563 moveto +P$2 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +23742 307 moveto +202 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 77.7031 rlineto +-234 0 rlineto +0 -100 rlineto +23742 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +23742.5 307.5 moveto +201 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 76.7031 rlineto +-233 0 rlineto +0 -99 rlineto +23742.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +23743 308 moveto +200 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 75.7031 rlineto +-232 0 rlineto +0 -98 rlineto +23743 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +23743.5 308.5 moveto +199 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 74.7031 rlineto +-231 0 rlineto +0 -97 rlineto +23743.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +23744 309 moveto +198 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 73.7031 rlineto +-230 0 rlineto +0 -96 rlineto +23744 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +23744.5 309.5 moveto +197 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 72.7031 rlineto +-229 0 rlineto +0 -95 rlineto +23744.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +23745 310 moveto +196 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 71.7031 rlineto +-228 0 rlineto +0 -94 rlineto +23745 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +23739 304 moveto +202 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 77.7031 rlineto +-234 0 rlineto +0 -100 rlineto +23739 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +23739 304 moveto +202 0 rlineto +7 22.2969 rlineto +25 0 rlineto +0 77.7031 rlineto +-234 0 rlineto +0 -100 rlineto +23739 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +23739 326.2969 moveto +209 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +23749.3594 313.5781 moveto +P$0 +23755.8125 314.9063 moveto +P$1 +23755.8125 313.1563 moveto +P$2 +23769.2656 314.6094 moveto +P$3 +23776.4219 318.3594 moveto +P$4 +23784.6094 317.5469 moveto +P$5 +23788.3438 316.625 moveto +P$6 +23795.8594 315.4219 moveto +P$7 +23803.1563 313.5781 moveto +P$8 +23811.3906 314.4688 moveto +P$9 +23809.7656 319.4219 moveto +P$a +23816.1719 313.3438 moveto +P$b +23816.1719 310.3594 moveto +P$c +23825.3906 319.7031 moveto +P$d +23823.7656 314.9375 moveto +P$e +23830.1719 313.3438 moveto +P$b +23830.1719 310.3594 moveto +P$c +23836.8438 311.1719 moveto +P$f +23843.6094 317.5469 moveto +P$5 +23847.3438 316.625 moveto +P$6 +23849.4219 318.3594 moveto +P$4 +23859.3906 314.4688 moveto +P$9 +23857.7656 319.4219 moveto +P$a +23867.8125 314.9063 moveto +P$1 +23867.8125 313.1563 moveto +P$2 +23880.3594 313.5781 moveto +P$0 +23888.8594 315.4219 moveto +P$7 +23897.8125 317.1563 moveto +P$i +23895.2969 316.3438 moveto +P$j +23902.625 319.8906 moveto +P$q +23904.25 314.9375 moveto +P$r +23913.8125 314.9063 moveto +P$1 +23913.8125 313.1563 moveto +P$2 +23920.4219 318.3594 moveto +P$4 +23925.0938 318.0156 moveto +P$m +23935.1719 313.3438 moveto +P$b +23935.1719 310.3594 moveto +P$c +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +24000 307 moveto +207 0 rlineto +7 22.2969 rlineto +537 0 rlineto +0 77.7031 rlineto +-751 0 rlineto +0 -100 rlineto +24000 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +24000.5 307.5 moveto +207 0 rlineto +7 22.2969 rlineto +536 0 rlineto +0 76.7031 rlineto +-750 0 rlineto +0 -99 rlineto +24000.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +24001 308 moveto +207 0 rlineto +7 22.2969 rlineto +535 0 rlineto +0 75.7031 rlineto +-749 0 rlineto +0 -98 rlineto +24001 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +24001.5 308.5 moveto +207 0 rlineto +7 22.2969 rlineto +534 0 rlineto +0 74.7031 rlineto +-748 0 rlineto +0 -97 rlineto +24001.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +24002 309 moveto +207 0 rlineto +7 22.2969 rlineto +533 0 rlineto +0 73.7031 rlineto +-747 0 rlineto +0 -96 rlineto +24002 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +24002.5 309.5 moveto +207 0 rlineto +7 22.2969 rlineto +532 0 rlineto +0 72.7031 rlineto +-746 0 rlineto +0 -95 rlineto +24002.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +24003 310 moveto +207 0 rlineto +7 22.2969 rlineto +531 0 rlineto +0 71.7031 rlineto +-745 0 rlineto +0 -94 rlineto +24003 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +23997 304 moveto +207 0 rlineto +7 22.2969 rlineto +537 0 rlineto +0 77.7031 rlineto +-751 0 rlineto +0 -100 rlineto +23997 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +23997 304 moveto +207 0 rlineto +7 22.2969 rlineto +537 0 rlineto +0 77.7031 rlineto +-751 0 rlineto +0 -100 rlineto +23997 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +23997 326.2969 moveto +214 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24007.3594 313.5781 moveto +P$0 +24013.8125 314.9063 moveto +P$1 +24013.8125 313.1563 moveto +P$2 +24027.2656 314.6094 moveto +P$3 +24034.4219 318.3594 moveto +P$4 +24042.6094 317.5469 moveto +P$5 +24046.3438 316.625 moveto +P$6 +24053.8594 315.4219 moveto +P$7 +24061.1563 313.5781 moveto +P$8 +24069.3906 314.4688 moveto +P$9 +24067.7656 319.4219 moveto +P$a +24074.1719 313.3438 moveto +P$b +24074.1719 310.3594 moveto +P$c +24083.3906 319.7031 moveto +P$d +24081.7656 314.9375 moveto +P$e +24088.1719 313.3438 moveto +P$b +24088.1719 310.3594 moveto +P$c +24094.8438 311.1719 moveto +P$f +24101.6094 317.5469 moveto +P$5 +24105.3438 316.625 moveto +P$6 +24107.4219 318.3594 moveto +P$4 +24118.3594 313.5781 moveto +P$0 +24128.2656 314.6094 moveto +P$3 +24141.1563 313.5781 moveto +P$8 +24144.4219 318.3594 moveto +P$4 +24151.625 319.8906 moveto +P$q +24153.25 314.9375 moveto +P$r +24162.8125 314.9063 moveto +P$1 +24162.8125 313.1563 moveto +P$2 +24174.8594 315.4219 moveto +P$7 +24178.8438 311.1719 moveto +P$f +24182.1719 310.3594 moveto +P$o +24193.8125 317.1563 moveto +P$i +24191.2969 316.3438 moveto +P$j +24198.8438 311.1719 moveto +P$f +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +12342 183 moveto 321 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -332 0 rlineto 0 -100 rlineto -2067 183 lineto +12342 183 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -2067.5 183.5 moveto +12342.5 183.5 moveto 320 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -331 0 rlineto 0 -99 rlineto -2067.5 183.5 lineto +12342.5 183.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -2068 184 moveto +12343 184 moveto 319 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -330 0 rlineto 0 -98 rlineto -2068 184 lineto +12343 184 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -2068.5 184.5 moveto +12343.5 184.5 moveto 318 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -329 0 rlineto 0 -97 rlineto -2068.5 184.5 lineto +12343.5 184.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -2069 185 moveto +12344 185 moveto 317 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -328 0 rlineto 0 -96 rlineto -2069 185 lineto +12344 185 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -2069.5 185.5 moveto +12344.5 185.5 moveto 316 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -327 0 rlineto 0 -95 rlineto -2069.5 185.5 lineto +12344.5 185.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -2070 186 moveto +12345 186 moveto 315 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -326 0 rlineto 0 -94 rlineto -2070 186 lineto +12345 186 lineto closepath eofill 1 1 1 setrgbcolor newpath -2064 180 moveto +12339 180 moveto 321 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -332 0 rlineto 0 -100 rlineto -2064 180 lineto +12339 180 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -2064 180 moveto +12339 180 moveto 321 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -332 0 rlineto 0 -100 rlineto -2064 180 lineto +12339 180 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -2064 202.2969 moveto +12339 202.2969 moveto 328 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -2074.3594 189.5781 moveto +12349.3594 189.5781 moveto P$0 -2080.8125 190.9063 moveto +12355.8125 190.9063 moveto P$1 -2080.8125 189.1563 moveto +12355.8125 189.1563 moveto P$2 -2094.2656 190.6094 moveto +12369.2656 190.6094 moveto P$3 -2101.4219 194.3594 moveto +12376.4219 194.3594 moveto P$4 -2109.6094 193.5469 moveto +12384.6094 193.5469 moveto P$5 -2113.3438 192.625 moveto +12388.3438 192.625 moveto P$6 -2120.8594 191.4219 moveto +12395.8594 191.4219 moveto P$7 -2128.1563 189.5781 moveto +12403.1563 189.5781 moveto P$8 -2136.3906 190.4688 moveto +12411.3906 190.4688 moveto P$9 -2134.7656 195.4219 moveto +12409.7656 195.4219 moveto P$a -2141.1719 189.3438 moveto +12416.1719 189.3438 moveto P$b -2141.1719 186.3594 moveto +12416.1719 186.3594 moveto P$c -2150.3906 195.7031 moveto +12425.3906 195.7031 moveto P$d -2148.7656 190.9375 moveto +12423.7656 190.9375 moveto P$e -2155.1719 189.3438 moveto +12430.1719 189.3438 moveto P$b -2155.1719 186.3594 moveto +12430.1719 186.3594 moveto P$c -2161.8438 187.1719 moveto +12436.8438 187.1719 moveto P$f -2168.6094 193.5469 moveto +12443.6094 193.5469 moveto P$5 -2172.3438 192.625 moveto +12447.3438 192.625 moveto P$6 -2174.4219 194.3594 moveto +12449.4219 194.3594 moveto P$4 -2185.3594 189.5781 moveto +12460.3594 189.5781 moveto P$0 -2195.2656 190.6094 moveto +12470.2656 190.6094 moveto P$3 -2208.1563 189.5781 moveto +12483.1563 189.5781 moveto P$8 -2211.4219 194.3594 moveto +12486.4219 194.3594 moveto P$4 -2218.625 195.8906 moveto +12493.625 195.8906 moveto P$q -2220.25 190.9375 moveto +12495.25 190.9375 moveto P$r -2226.0938 194.0156 moveto -P$g -2240.25 195.4219 moveto +12501.0938 194.0156 moveto +P$m +12515.25 195.4219 moveto +P$k +12513.625 190.4688 moveto +P$l +12521.1719 186.3594 moveto P$o -2238.625 190.4688 moveto -P$p -2246.1719 186.3594 moveto -P$l -2250.1719 189.3438 moveto +12525.1719 189.3438 moveto P$b -2250.1719 186.3594 moveto +12525.1719 186.3594 moveto P$c -2260.3594 189.5781 moveto +12535.3594 189.5781 moveto P$0 -2265.625 195.8906 moveto +12540.625 195.8906 moveto P$q -2267.25 190.9375 moveto +12542.25 190.9375 moveto P$r -2280.8125 193.1563 moveto +12555.8125 193.1563 moveto +P$i +12553.2969 192.3438 moveto P$j -2278.2969 192.3438 moveto -P$k -2288.8594 191.4219 moveto +12563.8594 191.4219 moveto P$7 -2296.1563 189.5781 moveto +12571.1563 189.5781 moveto P$8 -2302.8125 190.9063 moveto +12577.8125 190.9063 moveto P$1 -2302.8125 189.1563 moveto +12577.8125 189.1563 moveto P$2 -2316.875 192.3438 moveto -P$h -2322.6094 193.5469 moveto +12591.875 192.3438 moveto +P$g +12597.6094 193.5469 moveto P$5 -2326.3438 192.625 moveto +12601.3438 192.625 moveto P$6 -2328.1719 186.3594 moveto -P$l -2334.625 195.8906 moveto +12603.1719 186.3594 moveto +P$o +12609.625 195.8906 moveto P$q -2336.25 190.9375 moveto +12611.25 190.9375 moveto P$r -2347.8594 191.4219 moveto +12622.8594 191.4219 moveto P$7 -2352.8125 190.9063 moveto +12627.8125 190.9063 moveto P$1 -2352.8125 189.1563 moveto +12627.8125 189.1563 moveto P$2 -2364.2188 186.3594 moveto +12639.2188 186.3594 moveto P$w -2365.1719 189.3438 moveto +12640.1719 189.3438 moveto P$b -2365.1719 186.3594 moveto +12640.1719 186.3594 moveto P$c -2369.1719 186.3594 moveto -P$l -2380.8125 193.1563 moveto +12644.1719 186.3594 moveto +P$o +12655.8125 193.1563 moveto +P$i +12653.2969 192.3438 moveto P$j -2378.2969 192.3438 moveto -P$k fill 0.7843 0.7843 0.7843 setrgbcolor newpath -1647 59 moveto +25678 59 moveto 258 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 77.7031 rlineto -440 0 rlineto 0 -100 rlineto -1647 59 lineto +25678 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -1647.5 59.5 moveto +25678.5 59.5 moveto 257 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 76.7031 rlineto -439 0 rlineto 0 -99 rlineto -1647.5 59.5 lineto +25678.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -1648 60 moveto +25679 60 moveto 256 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 75.7031 rlineto -438 0 rlineto 0 -98 rlineto -1648 60 lineto +25679 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -1648.5 60.5 moveto +25679.5 60.5 moveto 255 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 74.7031 rlineto -437 0 rlineto 0 -97 rlineto -1648.5 60.5 lineto +25679.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -1649 61 moveto +25680 61 moveto 254 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 73.7031 rlineto -436 0 rlineto 0 -96 rlineto -1649 61 lineto +25680 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -1649.5 61.5 moveto +25680.5 61.5 moveto 253 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 72.7031 rlineto -435 0 rlineto 0 -95 rlineto -1649.5 61.5 lineto +25680.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -1650 62 moveto +25681 62 moveto 252 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 71.7031 rlineto -434 0 rlineto 0 -94 rlineto -1650 62 lineto +25681 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -1644 56 moveto +25675 56 moveto 258 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 77.7031 rlineto -440 0 rlineto 0 -100 rlineto -1644 56 lineto +25675 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -1644 56 moveto +25675 56 moveto 258 0 rlineto 7 22.2969 rlineto 175 0 rlineto 0 77.7031 rlineto -440 0 rlineto 0 -100 rlineto -1644 56 lineto +25675 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -1644 78.2969 moveto +25675 78.2969 moveto 265 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1654.3594 65.5781 moveto +25685.3594 65.5781 moveto P$0 -1660.8125 66.9063 moveto +25691.8125 66.9063 moveto P$1 -1660.8125 65.1563 moveto +25691.8125 65.1563 moveto P$2 -1674.2656 66.6094 moveto +25705.2656 66.6094 moveto P$3 -1681.4219 70.3594 moveto +25712.4219 70.3594 moveto P$4 -1689.6094 69.5469 moveto +25720.6094 69.5469 moveto P$5 -1693.3438 68.625 moveto +25724.3438 68.625 moveto P$6 -1700.8594 67.4219 moveto +25731.8594 67.4219 moveto P$7 -1708.1563 65.5781 moveto +25739.1563 65.5781 moveto P$8 -1716.3906 66.4688 moveto +25747.3906 66.4688 moveto P$9 -1714.7656 71.4219 moveto +25745.7656 71.4219 moveto P$a -1721.1719 65.3438 moveto +25752.1719 65.3438 moveto P$b -1721.1719 62.3594 moveto +25752.1719 62.3594 moveto P$c -1730.3906 71.7031 moveto +25761.3906 71.7031 moveto P$d -1728.7656 66.9375 moveto +25759.7656 66.9375 moveto P$e -1735.1719 65.3438 moveto +25766.1719 65.3438 moveto P$b -1735.1719 62.3594 moveto +25766.1719 62.3594 moveto P$c -1741.8438 63.1719 moveto +25772.8438 63.1719 moveto P$f -1748.6094 69.5469 moveto +25779.6094 69.5469 moveto P$5 -1752.3438 68.625 moveto +25783.3438 68.625 moveto P$6 -1754.4219 70.3594 moveto +25785.4219 70.3594 moveto P$4 -1765.3594 65.5781 moveto +25796.3594 65.5781 moveto P$0 -1775.2656 66.6094 moveto +25806.2656 66.6094 moveto P$3 -1788.1563 65.5781 moveto +25819.1563 65.5781 moveto P$8 -1791.4219 70.3594 moveto +25822.4219 70.3594 moveto P$4 -1798.625 71.8906 moveto +25829.625 71.8906 moveto P$q -1800.25 66.9375 moveto +25831.25 66.9375 moveto P$r -1806.0938 70.0156 moveto -P$g -1820.25 71.4219 moveto -P$o -1818.625 66.4688 moveto -P$p -1826.1719 62.3594 moveto -P$l -1830.1719 65.3438 moveto -P$b -1830.1719 62.3594 moveto -P$c -1840.1563 65.5781 moveto -P$8 -1850.875 68.3438 moveto -P$u -1852.0625 62.7969 moveto -P$x -1866.8125 66.9063 moveto -P$1 -1866.8125 65.1563 moveto -P$2 -1873.2813 62.7969 moveto -P$y -1882.1719 65.3438 moveto -P$b -1882.1719 62.3594 moveto -P$c -1886.1719 62.3594 moveto -P$l -1897.8125 69.1563 moveto -P$j -1895.2969 68.3438 moveto +25837.0938 70.0156 moveto +P$m +25851.25 71.4219 moveto P$k +25849.625 66.4688 moveto +P$l +25857.1719 62.3594 moveto +P$o +25861.1719 65.3438 moveto +P$b +25861.1719 62.3594 moveto +P$c +25871.1563 65.5781 moveto +P$8 +25881.875 68.3438 moveto +P$u +25883.0625 62.7969 moveto +P$x +25897.8125 66.9063 moveto +P$1 +25897.8125 65.1563 moveto +P$2 +25904.2813 62.7969 moveto +P$y +25913.1719 65.3438 moveto +P$b +25913.1719 62.3594 moveto +P$c +25917.1719 62.3594 moveto +P$o +25928.8125 69.1563 moveto +P$i +25926.2969 68.3438 moveto +P$j fill 0.7843 0.7843 0.7843 setrgbcolor newpath -7396 959 moveto +8782 431 moveto +334 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-345 0 rlineto +0 -224 rlineto +8782 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +8782.5 431.5 moveto +333 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 200.7031 rlineto +-344 0 rlineto +0 -223 rlineto +8782.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +8783 432 moveto +332 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 199.7031 rlineto +-343 0 rlineto +0 -222 rlineto +8783 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +8783.5 432.5 moveto +331 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 198.7031 rlineto +-342 0 rlineto +0 -221 rlineto +8783.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +8784 433 moveto +330 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 197.7031 rlineto +-341 0 rlineto +0 -220 rlineto +8784 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +8784.5 433.5 moveto +329 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 196.7031 rlineto +-340 0 rlineto +0 -219 rlineto +8784.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +8785 434 moveto +328 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 195.7031 rlineto +-339 0 rlineto +0 -218 rlineto +8785 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +8779 428 moveto +334 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-345 0 rlineto +0 -224 rlineto +8779 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +8779 428 moveto +334 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-345 0 rlineto +0 -224 rlineto +8779 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +8779 450.2969 moveto +341 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8789.3594 437.5781 moveto +P$0 +8795.8125 438.9063 moveto +P$1 +8795.8125 437.1563 moveto +P$2 +8809.2656 438.6094 moveto +P$3 +8816.4219 442.3594 moveto +P$4 +8824.6094 441.5469 moveto +P$5 +8828.3438 440.625 moveto +P$6 +8835.8594 439.4219 moveto +P$7 +8843.1563 437.5781 moveto +P$8 +8851.3906 438.4688 moveto +P$9 +8849.7656 443.4219 moveto +P$a +8856.1719 437.3438 moveto +P$b +8856.1719 434.3594 moveto +P$c +8865.3906 443.7031 moveto +P$d +8863.7656 438.9375 moveto +P$e +8870.1719 437.3438 moveto +P$b +8870.1719 434.3594 moveto +P$c +8876.8438 435.1719 moveto +P$f +8883.6094 441.5469 moveto +P$5 +8887.3438 440.625 moveto +P$6 +8889.4219 442.3594 moveto +P$4 +8900.3594 437.5781 moveto +P$0 +8906.8125 438.9063 moveto +P$1 +8906.8125 437.1563 moveto +P$2 +8912.2188 437.3438 moveto +P$v +8929.8125 441.1563 moveto +P$i +8927.2969 440.3438 moveto +P$j +8939.875 440.3438 moveto +P$g +8944.8438 435.1719 moveto +P$f +8953.8594 439.4219 moveto +P$7 +8954.1719 437.3438 moveto +P$t +8964.4219 442.3594 moveto +P$4 +8975.3594 437.5781 moveto +P$0 +8985.2656 438.6094 moveto +P$3 +8998.1563 437.5781 moveto +P$8 +9001.4219 442.3594 moveto +P$4 +9012.3594 437.5781 moveto +P$0 +9018.8125 438.9063 moveto +P$1 +9018.8125 437.1563 moveto +P$2 +9032.875 440.3438 moveto +P$g +9037.8438 435.1719 moveto +P$f +9048.8125 441.1563 moveto +P$i +9046.2969 440.3438 moveto +P$j +9058.875 440.3438 moveto +P$g +9063.8438 435.1719 moveto +P$f +9069.8438 435.1719 moveto +P$f +9072.1719 437.3438 moveto +P$t +9084.625 443.8906 moveto +P$q +9086.25 438.9375 moveto +P$r +9099.8125 441.1563 moveto +P$i +9097.2969 440.3438 moveto +P$j +9108.1563 437.5781 moveto +P$8 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +25021 307 moveto +142 0 rlineto +7 22.2969 rlineto +243 0 rlineto +0 201.7031 rlineto +-392 0 rlineto +0 -224 rlineto +25021 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +25021.5 307.5 moveto +142 0 rlineto +7 22.2969 rlineto +242 0 rlineto +0 200.7031 rlineto +-391 0 rlineto +0 -223 rlineto +25021.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +25022 308 moveto +142 0 rlineto +7 22.2969 rlineto +241 0 rlineto +0 199.7031 rlineto +-390 0 rlineto +0 -222 rlineto +25022 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +25022.5 308.5 moveto +142 0 rlineto +7 22.2969 rlineto +240 0 rlineto +0 198.7031 rlineto +-389 0 rlineto +0 -221 rlineto +25022.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +25023 309 moveto +142 0 rlineto +7 22.2969 rlineto +239 0 rlineto +0 197.7031 rlineto +-388 0 rlineto +0 -220 rlineto +25023 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +25023.5 309.5 moveto +142 0 rlineto +7 22.2969 rlineto +238 0 rlineto +0 196.7031 rlineto +-387 0 rlineto +0 -219 rlineto +25023.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +25024 310 moveto +142 0 rlineto +7 22.2969 rlineto +237 0 rlineto +0 195.7031 rlineto +-386 0 rlineto +0 -218 rlineto +25024 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +25018 304 moveto +142 0 rlineto +7 22.2969 rlineto +243 0 rlineto +0 201.7031 rlineto +-392 0 rlineto +0 -224 rlineto +25018 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25018 304 moveto +142 0 rlineto +7 22.2969 rlineto +243 0 rlineto +0 201.7031 rlineto +-392 0 rlineto +0 -224 rlineto +25018 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25018 326.2969 moveto +149 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25028.3594 313.5781 moveto +P$0 +25034.8125 314.9063 moveto +P$1 +25034.8125 313.1563 moveto +P$2 +25048.2656 314.6094 moveto +P$3 +25055.4219 318.3594 moveto +P$4 +25063.6094 317.5469 moveto +P$5 +25067.3438 316.625 moveto +P$6 +25074.8594 315.4219 moveto +P$7 +25082.1563 313.5781 moveto +P$8 +25090.3906 314.4688 moveto +P$9 +25088.7656 319.4219 moveto +P$a +25095.1719 313.3438 moveto +P$b +25095.1719 310.3594 moveto +P$c +25104.3906 319.7031 moveto +P$d +25102.7656 314.9375 moveto +P$e +25109.1719 313.3438 moveto +P$b +25109.1719 310.3594 moveto +P$c +25115.8438 311.1719 moveto +P$f +25122.6094 317.5469 moveto +P$5 +25126.3438 316.625 moveto +P$6 +25128.4219 318.3594 moveto +P$4 +25138.2188 310.3594 moveto +P$w +25142.6094 317.5469 moveto +P$5 +25146.3438 316.625 moveto +P$6 +25151.7656 314.9375 moveto +P$z +25153.3906 319.8906 moveto +P$10 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +25110 1083 moveto 271 0 rlineto 7 22.2969 rlineto 939 0 rlineto 0 77.7031 rlineto -1217 0 rlineto 0 -100 rlineto -7396 959 lineto +25110 1083 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -7396.5 959.5 moveto +25110.5 1083.5 moveto 271 0 rlineto 7 22.2969 rlineto 938 0 rlineto 0 76.7031 rlineto -1216 0 rlineto 0 -99 rlineto -7396.5 959.5 lineto +25110.5 1083.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -7397 960 moveto +25111 1084 moveto 271 0 rlineto 7 22.2969 rlineto 937 0 rlineto 0 75.7031 rlineto -1215 0 rlineto 0 -98 rlineto -7397 960 lineto +25111 1084 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -7397.5 960.5 moveto +25111.5 1084.5 moveto 271 0 rlineto 7 22.2969 rlineto 936 0 rlineto 0 74.7031 rlineto -1214 0 rlineto 0 -97 rlineto -7397.5 960.5 lineto +25111.5 1084.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -7398 961 moveto +25112 1085 moveto 271 0 rlineto 7 22.2969 rlineto 935 0 rlineto 0 73.7031 rlineto -1213 0 rlineto 0 -96 rlineto -7398 961 lineto +25112 1085 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -7398.5 961.5 moveto +25112.5 1085.5 moveto 271 0 rlineto 7 22.2969 rlineto 934 0 rlineto 0 72.7031 rlineto -1212 0 rlineto 0 -95 rlineto -7398.5 961.5 lineto +25112.5 1085.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -7399 962 moveto +25113 1086 moveto 271 0 rlineto 7 22.2969 rlineto 933 0 rlineto 0 71.7031 rlineto -1211 0 rlineto 0 -94 rlineto -7399 962 lineto +25113 1086 lineto closepath eofill 1 1 1 setrgbcolor newpath -7393 956 moveto +25107 1080 moveto 271 0 rlineto 7 22.2969 rlineto 939 0 rlineto 0 77.7031 rlineto -1217 0 rlineto 0 -100 rlineto -7393 956 lineto +25107 1080 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7393 956 moveto +25107 1080 moveto 271 0 rlineto 7 22.2969 rlineto 939 0 rlineto 0 77.7031 rlineto -1217 0 rlineto 0 -100 rlineto -7393 956 lineto +25107 1080 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7393 978.2969 moveto +25107 1102.2969 moveto 278 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -7403.3594 965.5781 moveto +25117.3594 1089.5781 moveto P$0 -7409.8125 966.9063 moveto +25123.8125 1090.9063 moveto P$1 -7409.8125 965.1563 moveto +25123.8125 1089.1563 moveto P$2 -7423.2656 966.6094 moveto +25137.2656 1090.6094 moveto P$3 -7430.4219 970.3594 moveto +25144.4219 1094.3594 moveto P$4 -7438.6094 969.5469 moveto +25152.6094 1093.5469 moveto P$5 -7442.3438 968.625 moveto +25156.3438 1092.625 moveto P$6 -7449.8594 967.4219 moveto +25163.8594 1091.4219 moveto P$7 -7457.1563 965.5781 moveto +25171.1563 1089.5781 moveto P$8 -7465.3906 966.4688 moveto +25179.3906 1090.4688 moveto P$9 -7463.7656 971.4219 moveto +25177.7656 1095.4219 moveto P$a -7470.1719 965.3438 moveto +25184.1719 1089.3438 moveto P$b -7470.1719 962.3594 moveto +25184.1719 1086.3594 moveto P$c -7479.3906 971.7031 moveto +25193.3906 1095.7031 moveto P$d -7477.7656 966.9375 moveto +25191.7656 1090.9375 moveto P$e -7484.1719 965.3438 moveto +25198.1719 1089.3438 moveto P$b -7484.1719 962.3594 moveto +25198.1719 1086.3594 moveto P$c -7490.8438 963.1719 moveto +25204.8438 1087.1719 moveto P$f -7497.6094 969.5469 moveto +25211.6094 1093.5469 moveto P$5 -7501.3438 968.625 moveto +25215.3438 1092.625 moveto P$6 -7503.4219 970.3594 moveto +25217.4219 1094.3594 moveto P$4 -7513.2188 962.3594 moveto +25227.2188 1086.3594 moveto P$w -7517.8125 966.9063 moveto +25231.8125 1090.9063 moveto P$1 -7517.8125 965.1563 moveto +25231.8125 1089.1563 moveto P$2 -7529.8594 967.4219 moveto +25243.8594 1091.4219 moveto P$7 -7538.2656 966.6094 moveto +25252.2656 1090.6094 moveto P$3 -7549.25 971.4219 moveto -P$o -7547.625 966.4688 moveto -P$p -7555.0938 970.0156 moveto -P$g -7565.1719 965.3438 moveto -P$b -7565.1719 962.3594 moveto -P$c -7569.1719 962.3594 moveto -P$l -7578.3906 966.4688 moveto -P$9 -7576.7656 971.4219 moveto -P$a -7590.8125 969.1563 moveto -P$j -7588.2969 968.3438 moveto +25263.25 1095.4219 moveto P$k -7598.8594 967.4219 moveto -P$7 -7600.4219 970.3594 moveto -P$4 -7608.6094 969.5469 moveto -P$5 -7612.3438 968.625 moveto -P$6 -7620.3594 965.5781 moveto -P$0 -7625.8438 963.1719 moveto -P$f -7629.1719 965.3438 moveto -P$b -7629.1719 962.3594 moveto -P$c -7636.8125 966.9063 moveto -P$1 -7636.8125 965.1563 moveto -P$2 -7650.875 968.3438 moveto -P$h -7659.1563 965.5781 moveto -P$8 -fill -0.7843 0.7843 0.7843 setrgbcolor -newpath -11788 811 moveto -283 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 93.7031 rlineto --320 0 rlineto -0 -116 rlineto -11788 811 lineto -closepath eofill -0.6863 0.6863 0.6863 setrgbcolor -newpath -11788.5 811.5 moveto -282 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 92.7031 rlineto --319 0 rlineto -0 -115 rlineto -11788.5 811.5 lineto -closepath eofill -0.5882 0.5882 0.5882 setrgbcolor -newpath -11789 812 moveto -281 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 91.7031 rlineto --318 0 rlineto -0 -114 rlineto -11789 812 lineto -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -newpath -11789.5 812.5 moveto -280 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 90.7031 rlineto --317 0 rlineto -0 -113 rlineto -11789.5 812.5 lineto -closepath eofill -0.3922 0.3922 0.3922 setrgbcolor -newpath -11790 813 moveto -279 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 89.7031 rlineto --316 0 rlineto -0 -112 rlineto -11790 813 lineto -closepath eofill -0.2941 0.2941 0.2941 setrgbcolor -newpath -11790.5 813.5 moveto -278 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 88.7031 rlineto --315 0 rlineto -0 -111 rlineto -11790.5 813.5 lineto -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -newpath -11791 814 moveto -277 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 87.7031 rlineto --314 0 rlineto -0 -110 rlineto -11791 814 lineto -closepath eofill -1 1 1 setrgbcolor -newpath -11785 808 moveto -283 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 93.7031 rlineto --320 0 rlineto -0 -116 rlineto -11785 808 lineto -closepath eofill -2.0 setlinewidth -0 0 0 setrgbcolor -newpath -11785 808 moveto -283 0 rlineto -7 22.2969 rlineto -30 0 rlineto -0 93.7031 rlineto --320 0 rlineto -0 -116 rlineto -11785 808 lineto -closepath stroke -2.0 setlinewidth -0 0 0 setrgbcolor -newpath -11785 830.2969 moveto -290 0 rlineto -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11795.3594 817.5781 moveto -P$0 -11801.8125 818.9063 moveto -P$1 -11801.8125 817.1563 moveto -P$2 -11815.2656 818.6094 moveto -P$3 -11822.4219 822.3594 moveto -P$4 -11830.6094 821.5469 moveto -P$5 -11834.3438 820.625 moveto -P$6 -11841.8594 819.4219 moveto -P$7 -11849.1563 817.5781 moveto -P$8 -11857.3906 818.4688 moveto -P$9 -11855.7656 823.4219 moveto -P$a -11862.1719 817.3438 moveto -P$b -11862.1719 814.3594 moveto -P$c -11871.3906 823.7031 moveto -P$d -11869.7656 818.9375 moveto -P$e -11876.1719 817.3438 moveto -P$b -11876.1719 814.3594 moveto -P$c -11882.8438 815.1719 moveto -P$f -11889.6094 821.5469 moveto -P$5 -11893.3438 820.625 moveto -P$6 -11895.4219 822.3594 moveto -P$4 -11905.3906 823.7031 moveto -P$d -11903.7656 818.9375 moveto -P$e -11910.1719 814.3594 moveto +25261.625 1090.4688 moveto P$l -11917.8125 818.9063 moveto -P$1 -11917.8125 817.1563 moveto -P$2 -11928.25 823.4219 moveto -P$o -11926.625 818.4688 moveto -P$p -11937.6094 821.5469 moveto -P$5 -11941.3438 820.625 moveto -P$6 -11943.1719 814.3594 moveto -P$l -11947.1719 817.3438 moveto -P$b -11947.1719 814.3594 moveto -P$c -11950.7969 817.3438 moveto +25269.0938 1094.0156 moveto P$m -11963.6094 821.5469 moveto -P$5 -11967.3438 820.625 moveto -P$6 -11971.8438 815.1719 moveto -P$f -11975.1719 817.3438 moveto +25279.1719 1089.3438 moveto P$b -11975.1719 814.3594 moveto +25279.1719 1086.3594 moveto P$c -11982.8125 818.9063 moveto -P$1 -11982.8125 817.1563 moveto -P$2 -11996.875 820.3438 moveto -P$h -11999.4219 822.3594 moveto -P$4 -12012.375 824.4375 moveto -P$z -12022.875 820.3438 moveto -P$u -12028.6094 821.5469 moveto -P$5 -12032.3438 820.625 moveto -P$6 -12039.8594 819.4219 moveto -P$7 -12047.1563 817.5781 moveto -P$8 -12057.8125 821.1563 moveto -P$j -12055.2969 820.3438 moveto -P$k -12062.8438 815.1719 moveto -P$f -fill -0.7843 0.7843 0.7843 setrgbcolor -newpath -6657 431 moveto -268 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 201.7031 rlineto --279 0 rlineto -0 -224 rlineto -6657 431 lineto -closepath eofill -0.6863 0.6863 0.6863 setrgbcolor -newpath -6657.5 431.5 moveto -267 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 200.7031 rlineto --278 0 rlineto -0 -223 rlineto -6657.5 431.5 lineto -closepath eofill -0.5882 0.5882 0.5882 setrgbcolor -newpath -6658 432 moveto -266 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 199.7031 rlineto --277 0 rlineto -0 -222 rlineto -6658 432 lineto -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -newpath -6658.5 432.5 moveto -265 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 198.7031 rlineto --276 0 rlineto -0 -221 rlineto -6658.5 432.5 lineto -closepath eofill -0.3922 0.3922 0.3922 setrgbcolor -newpath -6659 433 moveto -264 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 197.7031 rlineto --275 0 rlineto -0 -220 rlineto -6659 433 lineto -closepath eofill -0.2941 0.2941 0.2941 setrgbcolor -newpath -6659.5 433.5 moveto -263 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 196.7031 rlineto --274 0 rlineto -0 -219 rlineto -6659.5 433.5 lineto -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -newpath -6660 434 moveto -262 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 195.7031 rlineto --273 0 rlineto -0 -218 rlineto -6660 434 lineto -closepath eofill -1 1 1 setrgbcolor -newpath -6654 428 moveto -268 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 201.7031 rlineto --279 0 rlineto -0 -224 rlineto -6654 428 lineto -closepath eofill -2.0 setlinewidth -0 0 0 setrgbcolor -newpath -6654 428 moveto -268 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 201.7031 rlineto --279 0 rlineto -0 -224 rlineto -6654 428 lineto -closepath stroke -2.0 setlinewidth -0 0 0 setrgbcolor -newpath -6654 450.2969 moveto -275 0 rlineto -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6664.3594 437.5781 moveto -P$0 -6670.8125 438.9063 moveto -P$1 -6670.8125 437.1563 moveto -P$2 -6684.2656 438.6094 moveto -P$3 -6691.4219 442.3594 moveto -P$4 -6699.6094 441.5469 moveto -P$5 -6703.3438 440.625 moveto -P$6 -6710.8594 439.4219 moveto -P$7 -6718.1563 437.5781 moveto -P$8 -6726.3906 438.4688 moveto +25283.1719 1086.3594 moveto +P$o +25292.3906 1090.4688 moveto P$9 -6724.7656 443.4219 moveto +25290.7656 1095.4219 moveto P$a -6731.1719 437.3438 moveto -P$b -6731.1719 434.3594 moveto -P$c -6740.3906 443.7031 moveto -P$d -6738.7656 438.9375 moveto -P$e -6745.1719 437.3438 moveto -P$b -6745.1719 434.3594 moveto -P$c -6751.8438 435.1719 moveto -P$f -6758.6094 441.5469 moveto -P$5 -6762.3438 440.625 moveto -P$6 -6764.4219 442.3594 moveto -P$4 -6769.1719 434.3594 moveto +25304.8125 1093.1563 moveto P$i -6785.8125 441.1563 moveto +25302.2969 1092.3438 moveto P$j -6783.2969 440.3438 moveto -P$k -6793.8594 439.4219 moveto +25312.8594 1091.4219 moveto P$7 -6802.875 440.3438 moveto -P$h -6812.8125 441.1563 moveto -P$j -6810.2969 440.3438 moveto -P$k -6815.1719 434.3594 moveto -P$l -6819.4219 442.3594 moveto +25314.4219 1094.3594 moveto P$4 -6826.625 443.8906 moveto -P$q -6828.25 438.9375 moveto -P$r -6841.8125 441.1563 moveto -P$j -6839.2969 440.3438 moveto -P$k -6849.8594 439.4219 moveto -P$7 -6858.2656 438.6094 moveto -P$3 -6865.1719 437.3438 moveto +25322.6094 1093.5469 moveto +P$5 +25326.3438 1092.625 moveto +P$6 +25334.3594 1089.5781 moveto +P$0 +25339.8438 1087.1719 moveto +P$f +25343.1719 1089.3438 moveto P$b -6865.1719 434.3594 moveto +25343.1719 1086.3594 moveto P$c -6875.1563 437.5781 moveto -P$8 -6884.1563 437.5781 moveto -P$8 -6887.1719 437.3438 moveto -P$b -6887.1719 434.3594 moveto -P$c -6894.8125 438.9063 moveto +25350.8125 1090.9063 moveto P$1 -6894.8125 437.1563 moveto +25350.8125 1089.1563 moveto P$2 -6908.875 440.3438 moveto -P$h -6917.1563 437.5781 moveto +25364.875 1092.3438 moveto +P$g +25373.1563 1089.5781 moveto P$8 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -12216 59 moveto -236 0 rlineto +26351 1083 moveto +240 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto --247 0 rlineto +-251 0 rlineto 0 -100 rlineto -12216 59 lineto +26351 1083 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -12216.5 59.5 moveto -235 0 rlineto +26351.5 1083.5 moveto +239 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto --246 0 rlineto +-250 0 rlineto 0 -99 rlineto -12216.5 59.5 lineto +26351.5 1083.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -12217 60 moveto -234 0 rlineto +26352 1084 moveto +238 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto --245 0 rlineto +-249 0 rlineto 0 -98 rlineto -12217 60 lineto +26352 1084 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -12217.5 60.5 moveto -233 0 rlineto +26352.5 1084.5 moveto +237 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto --244 0 rlineto +-248 0 rlineto 0 -97 rlineto -12217.5 60.5 lineto +26352.5 1084.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -12218 61 moveto -232 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 73.7031 rlineto --243 0 rlineto -0 -96 rlineto -12218 61 lineto -closepath eofill -0.2941 0.2941 0.2941 setrgbcolor -newpath -12218.5 61.5 moveto -231 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 72.7031 rlineto --242 0 rlineto -0 -95 rlineto -12218.5 61.5 lineto -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -newpath -12219 62 moveto -230 0 rlineto -7 22.2969 rlineto -4 0 rlineto -0 71.7031 rlineto --241 0 rlineto -0 -94 rlineto -12219 62 lineto -closepath eofill -1 1 1 setrgbcolor -newpath -12213 56 moveto +26353 1085 moveto 236 0 rlineto 7 22.2969 rlineto 4 0 rlineto -0 77.7031 rlineto +0 73.7031 rlineto -247 0 rlineto +0 -96 rlineto +26353 1085 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +26353.5 1085.5 moveto +235 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-246 0 rlineto +0 -95 rlineto +26353.5 1085.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +26354 1086 moveto +234 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-245 0 rlineto +0 -94 rlineto +26354 1086 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +26348 1080 moveto +240 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-251 0 rlineto 0 -100 rlineto -12213 56 lineto +26348 1080 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -12213 56 moveto -236 0 rlineto +26348 1080 moveto +240 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto --247 0 rlineto +-251 0 rlineto 0 -100 rlineto -12213 56 lineto +26348 1080 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -12213 78.2969 moveto -243 0 rlineto +26348 1102.2969 moveto +247 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -12223.3594 65.5781 moveto +26358.3594 1089.5781 moveto P$0 -12229.8125 66.9063 moveto +26364.8125 1090.9063 moveto P$1 -12229.8125 65.1563 moveto +26364.8125 1089.1563 moveto P$2 -12243.2656 66.6094 moveto +26378.2656 1090.6094 moveto P$3 -12250.4219 70.3594 moveto +26385.4219 1094.3594 moveto P$4 -12258.6094 69.5469 moveto +26393.6094 1093.5469 moveto P$5 -12262.3438 68.625 moveto +26397.3438 1092.625 moveto P$6 -12269.8594 67.4219 moveto +26404.8594 1091.4219 moveto P$7 -12277.1563 65.5781 moveto +26412.1563 1089.5781 moveto P$8 -12285.3906 66.4688 moveto +26420.3906 1090.4688 moveto P$9 -12283.7656 71.4219 moveto +26418.7656 1095.4219 moveto P$a -12290.1719 65.3438 moveto +26425.1719 1089.3438 moveto P$b -12290.1719 62.3594 moveto +26425.1719 1086.3594 moveto P$c -12299.3906 71.7031 moveto +26434.3906 1095.7031 moveto P$d -12297.7656 66.9375 moveto +26432.7656 1090.9375 moveto P$e -12304.1719 65.3438 moveto +26439.1719 1089.3438 moveto P$b -12304.1719 62.3594 moveto +26439.1719 1086.3594 moveto P$c -12310.8438 63.1719 moveto +26445.8438 1087.1719 moveto P$f -12317.6094 69.5469 moveto +26452.6094 1093.5469 moveto P$5 -12321.3438 68.625 moveto +26456.3438 1092.625 moveto P$6 -12323.4219 70.3594 moveto +26458.4219 1094.3594 moveto P$4 -12328.1719 62.3594 moveto -P$i -12344.8125 69.1563 moveto -P$j -12342.2969 68.3438 moveto -P$k -12352.8594 67.4219 moveto +26468.2188 1086.3594 moveto +P$w +26472.8125 1090.9063 moveto +P$1 +26472.8125 1089.1563 moveto +P$2 +26484.8594 1091.4219 moveto P$7 -12361.875 68.3438 moveto -P$h -12371.8125 69.1563 moveto -P$j -12369.2969 68.3438 moveto +26493.2656 1090.6094 moveto +P$3 +26504.25 1095.4219 moveto P$k -12374.1719 62.3594 moveto +26502.625 1090.4688 moveto P$l -12378.4219 70.3594 moveto -P$4 -12389.1563 65.5781 moveto -P$8 -12399.8125 69.1563 moveto -P$j -12397.2969 68.3438 moveto -P$k -12408.3594 65.5781 moveto -P$0 -12411.0938 70.0156 moveto -P$g -12426.8594 67.4219 moveto -P$7 -12428.1719 65.3438 moveto +26510.0938 1094.0156 moveto +P$m +26520.1719 1089.3438 moveto P$b -12428.1719 62.3594 moveto +26520.1719 1086.3594 moveto P$c -12434.8438 63.1719 moveto -P$f -12437.1719 65.3438 moveto -P$t +26524.1719 1086.3594 moveto +P$o +26533.3906 1090.4688 moveto +P$9 +26531.7656 1095.4219 moveto +P$a +26545.8125 1093.1563 moveto +P$i +26543.2969 1092.3438 moveto +P$j +26553.8594 1091.4219 moveto +P$7 +26555.4219 1094.3594 moveto +P$4 +26562.625 1095.8906 moveto +P$q +26564.25 1090.9375 moveto +P$r +26575.3906 1090.4688 moveto +P$9 +26573.7656 1095.4219 moveto +P$a +26585.2188 1086.3594 moveto +P$w fill 0.7843 0.7843 0.7843 setrgbcolor newpath -6205 307 moveto +9408 307 moveto +164 0 rlineto +7 22.2969 rlineto +500 0 rlineto +0 325.7031 rlineto +-671 0 rlineto +0 -348 rlineto +9408 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +9408.5 307.5 moveto +164 0 rlineto +7 22.2969 rlineto +499 0 rlineto +0 324.7031 rlineto +-670 0 rlineto +0 -347 rlineto +9408.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +9409 308 moveto +164 0 rlineto +7 22.2969 rlineto +498 0 rlineto +0 323.7031 rlineto +-669 0 rlineto +0 -346 rlineto +9409 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +9409.5 308.5 moveto +164 0 rlineto +7 22.2969 rlineto +497 0 rlineto +0 322.7031 rlineto +-668 0 rlineto +0 -345 rlineto +9409.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +9410 309 moveto +164 0 rlineto +7 22.2969 rlineto +496 0 rlineto +0 321.7031 rlineto +-667 0 rlineto +0 -344 rlineto +9410 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +9410.5 309.5 moveto +164 0 rlineto +7 22.2969 rlineto +495 0 rlineto +0 320.7031 rlineto +-666 0 rlineto +0 -343 rlineto +9410.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +9411 310 moveto +164 0 rlineto +7 22.2969 rlineto +494 0 rlineto +0 319.7031 rlineto +-665 0 rlineto +0 -342 rlineto +9411 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +9405 304 moveto +164 0 rlineto +7 22.2969 rlineto +500 0 rlineto +0 325.7031 rlineto +-671 0 rlineto +0 -348 rlineto +9405 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +9405 304 moveto +164 0 rlineto +7 22.2969 rlineto +500 0 rlineto +0 325.7031 rlineto +-671 0 rlineto +0 -348 rlineto +9405 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +9405 326.2969 moveto +171 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9415.3594 313.5781 moveto +P$0 +9421.8125 314.9063 moveto +P$1 +9421.8125 313.1563 moveto +P$2 +9435.2656 314.6094 moveto +P$3 +9442.4219 318.3594 moveto +P$4 +9450.6094 317.5469 moveto +P$5 +9454.3438 316.625 moveto +P$6 +9461.8594 315.4219 moveto +P$7 +9469.1563 313.5781 moveto +P$8 +9477.3906 314.4688 moveto +P$9 +9475.7656 319.4219 moveto +P$a +9482.1719 313.3438 moveto +P$b +9482.1719 310.3594 moveto +P$c +9491.3906 319.7031 moveto +P$d +9489.7656 314.9375 moveto +P$e +9496.1719 313.3438 moveto +P$b +9496.1719 310.3594 moveto +P$c +9502.8438 311.1719 moveto +P$f +9509.6094 317.5469 moveto +P$5 +9513.3438 316.625 moveto +P$6 +9515.4219 318.3594 moveto +P$4 +9525.2188 310.3594 moveto +P$w +9529.8125 314.9063 moveto +P$1 +9529.8125 313.1563 moveto +P$2 +9541.8594 315.4219 moveto +P$7 +9543.0938 318.0156 moveto +P$m +9560.2656 314.6094 moveto +P$3 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +15454 307 moveto 202 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 201.7031 rlineto -428 0 rlineto 0 -224 rlineto -6205 307 lineto +15454 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -6205.5 307.5 moveto +15454.5 307.5 moveto 201 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 200.7031 rlineto -427 0 rlineto 0 -223 rlineto -6205.5 307.5 lineto +15454.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -6206 308 moveto +15455 308 moveto 200 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 199.7031 rlineto -426 0 rlineto 0 -222 rlineto -6206 308 lineto +15455 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -6206.5 308.5 moveto +15455.5 308.5 moveto 199 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 198.7031 rlineto -425 0 rlineto 0 -221 rlineto -6206.5 308.5 lineto +15455.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -6207 309 moveto +15456 309 moveto 198 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 197.7031 rlineto -424 0 rlineto 0 -220 rlineto -6207 309 lineto +15456 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -6207.5 309.5 moveto +15456.5 309.5 moveto 197 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 196.7031 rlineto -423 0 rlineto 0 -219 rlineto -6207.5 309.5 lineto +15456.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -6208 310 moveto +15457 310 moveto 196 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 195.7031 rlineto -422 0 rlineto 0 -218 rlineto -6208 310 lineto +15457 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -6202 304 moveto +15451 304 moveto 202 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 201.7031 rlineto -428 0 rlineto 0 -224 rlineto -6202 304 lineto +15451 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -6202 304 moveto +15451 304 moveto 202 0 rlineto 7 22.2969 rlineto 219 0 rlineto 0 201.7031 rlineto -428 0 rlineto 0 -224 rlineto -6202 304 lineto +15451 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -6202 326.2969 moveto +15451 326.2969 moveto 209 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -6212.3594 313.5781 moveto +15461.3594 313.5781 moveto P$0 -6218.8125 314.9063 moveto +15467.8125 314.9063 moveto P$1 -6218.8125 313.1563 moveto +15467.8125 313.1563 moveto P$2 -6232.2656 314.6094 moveto +15481.2656 314.6094 moveto P$3 -6239.4219 318.3594 moveto +15488.4219 318.3594 moveto P$4 -6247.6094 317.5469 moveto +15496.6094 317.5469 moveto P$5 -6251.3438 316.625 moveto +15500.3438 316.625 moveto P$6 -6258.8594 315.4219 moveto +15507.8594 315.4219 moveto P$7 -6266.1563 313.5781 moveto +15515.1563 313.5781 moveto P$8 -6274.3906 314.4688 moveto +15523.3906 314.4688 moveto P$9 -6272.7656 319.4219 moveto +15521.7656 319.4219 moveto P$a -6279.1719 313.3438 moveto +15528.1719 313.3438 moveto P$b -6279.1719 310.3594 moveto +15528.1719 310.3594 moveto P$c -6288.3906 319.7031 moveto +15537.3906 319.7031 moveto P$d -6286.7656 314.9375 moveto +15535.7656 314.9375 moveto P$e -6293.1719 313.3438 moveto +15542.1719 313.3438 moveto P$b -6293.1719 310.3594 moveto +15542.1719 310.3594 moveto P$c -6299.8438 311.1719 moveto +15548.8438 311.1719 moveto P$f -6306.6094 317.5469 moveto +15555.6094 317.5469 moveto P$5 -6310.3438 316.625 moveto +15559.3438 316.625 moveto P$6 -6312.4219 318.3594 moveto +15561.4219 318.3594 moveto P$4 -6324.2656 314.6094 moveto +15573.2656 314.6094 moveto P$3 -6338.8125 317.1563 moveto +15587.8125 317.1563 moveto +P$i +15585.2969 316.3438 moveto P$j -6336.2969 316.3438 moveto -P$k -6347.1563 313.5781 moveto +15596.1563 313.5781 moveto P$8 -6356.1563 313.5781 moveto +15605.1563 313.5781 moveto P$8 -6362.6094 317.5469 moveto +15611.6094 317.5469 moveto P$5 -6366.3438 316.625 moveto +15615.3438 316.625 moveto P$6 -6373.3906 319.7031 moveto +15622.3906 319.7031 moveto P$d -6371.7656 314.9375 moveto +15620.7656 314.9375 moveto P$e -6378.1719 313.3438 moveto +15627.1719 313.3438 moveto P$b -6378.1719 310.3594 moveto +15627.1719 310.3594 moveto P$c -6389.875 316.3438 moveto -P$h -6397.3906 319.7031 moveto +15638.875 316.3438 moveto +P$g +15646.3906 319.7031 moveto P$d -6395.7656 314.9375 moveto +15644.7656 314.9375 moveto P$e fill 0.7843 0.7843 0.7843 setrgbcolor newpath -7787 307 moveto +10103 431 moveto +219 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-230 0 rlineto +0 -100 rlineto +10103 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +10103.5 431.5 moveto +218 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-229 0 rlineto +0 -99 rlineto +10103.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +10104 432 moveto +217 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-228 0 rlineto +0 -98 rlineto +10104 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +10104.5 432.5 moveto +216 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-227 0 rlineto +0 -97 rlineto +10104.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +10105 433 moveto +215 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-226 0 rlineto +0 -96 rlineto +10105 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +10105.5 433.5 moveto +214 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-225 0 rlineto +0 -95 rlineto +10105.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +10106 434 moveto +213 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-224 0 rlineto +0 -94 rlineto +10106 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +10100 428 moveto +219 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-230 0 rlineto +0 -100 rlineto +10100 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +10100 428 moveto +219 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-230 0 rlineto +0 -100 rlineto +10100 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +10100 450.2969 moveto +226 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10110.3594 437.5781 moveto +P$0 +10116.8125 438.9063 moveto +P$1 +10116.8125 437.1563 moveto +P$2 +10130.2656 438.6094 moveto +P$3 +10137.4219 442.3594 moveto +P$4 +10145.6094 441.5469 moveto +P$5 +10149.3438 440.625 moveto +P$6 +10156.8594 439.4219 moveto +P$7 +10164.1563 437.5781 moveto +P$8 +10172.3906 438.4688 moveto +P$9 +10170.7656 443.4219 moveto +P$a +10177.1719 437.3438 moveto +P$b +10177.1719 434.3594 moveto +P$c +10186.3906 443.7031 moveto +P$d +10184.7656 438.9375 moveto +P$e +10191.1719 437.3438 moveto +P$b +10191.1719 434.3594 moveto +P$c +10197.8438 435.1719 moveto +P$f +10204.6094 441.5469 moveto +P$5 +10208.3438 440.625 moveto +P$6 +10210.4219 442.3594 moveto +P$4 +10221.3594 437.5781 moveto +P$0 +10231.2656 438.6094 moveto +P$3 +10244.1563 437.5781 moveto +P$8 +10247.4219 442.3594 moveto +P$4 +10252.1719 434.3594 moveto +P$o +10256.1719 437.3438 moveto +P$b +10256.1719 434.3594 moveto +P$c +10265.2188 434.3594 moveto +P$w +10273.8125 441.1563 moveto +P$i +10271.2969 440.3438 moveto +P$j +10282.3594 437.5781 moveto +P$0 +10284.1719 437.3438 moveto +P$t +10300.3594 437.5781 moveto +P$0 +10303.1719 434.3594 moveto +P$o +10314.8125 441.1563 moveto +P$i +10312.2969 440.3438 moveto +P$j +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +26838 555 moveto 205 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 77.7031 rlineto -378 0 rlineto 0 -100 rlineto -7787 307 lineto +26838 555 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -7787.5 307.5 moveto +26838.5 555.5 moveto 204 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 76.7031 rlineto -377 0 rlineto 0 -99 rlineto -7787.5 307.5 lineto +26838.5 555.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -7788 308 moveto +26839 556 moveto 203 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 75.7031 rlineto -376 0 rlineto 0 -98 rlineto -7788 308 lineto +26839 556 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -7788.5 308.5 moveto +26839.5 556.5 moveto 202 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 74.7031 rlineto -375 0 rlineto 0 -97 rlineto -7788.5 308.5 lineto +26839.5 556.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -7789 309 moveto +26840 557 moveto 201 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 73.7031 rlineto -374 0 rlineto 0 -96 rlineto -7789 309 lineto +26840 557 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -7789.5 309.5 moveto +26840.5 557.5 moveto 200 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 72.7031 rlineto -373 0 rlineto 0 -95 rlineto -7789.5 309.5 lineto +26840.5 557.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -7790 310 moveto +26841 558 moveto 199 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 71.7031 rlineto -372 0 rlineto 0 -94 rlineto -7790 310 lineto +26841 558 lineto closepath eofill 1 1 1 setrgbcolor newpath -7784 304 moveto +26835 552 moveto 205 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 77.7031 rlineto -378 0 rlineto 0 -100 rlineto -7784 304 lineto +26835 552 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7784 304 moveto +26835 552 moveto 205 0 rlineto 7 22.2969 rlineto 166 0 rlineto 0 77.7031 rlineto -378 0 rlineto 0 -100 rlineto -7784 304 lineto +26835 552 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -7784 326.2969 moveto +26835 574.2969 moveto 212 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -7794.3594 313.5781 moveto +26845.3594 561.5781 moveto P$0 -7800.8125 314.9063 moveto +26851.8125 562.9063 moveto P$1 -7800.8125 313.1563 moveto +26851.8125 561.1563 moveto P$2 -7814.2656 314.6094 moveto +26865.2656 562.6094 moveto P$3 -7821.4219 318.3594 moveto +26872.4219 566.3594 moveto P$4 -7829.6094 317.5469 moveto +26880.6094 565.5469 moveto P$5 -7833.3438 316.625 moveto +26884.3438 564.625 moveto P$6 -7840.8594 315.4219 moveto +26891.8594 563.4219 moveto P$7 -7848.1563 313.5781 moveto +26899.1563 561.5781 moveto P$8 -7856.3906 314.4688 moveto +26907.3906 562.4688 moveto P$9 -7854.7656 319.4219 moveto +26905.7656 567.4219 moveto P$a -7861.1719 313.3438 moveto +26912.1719 561.3438 moveto P$b -7861.1719 310.3594 moveto +26912.1719 558.3594 moveto P$c -7870.3906 319.7031 moveto +26921.3906 567.7031 moveto P$d -7868.7656 314.9375 moveto +26919.7656 562.9375 moveto P$e -7875.1719 313.3438 moveto +26926.1719 561.3438 moveto P$b -7875.1719 310.3594 moveto +26926.1719 558.3594 moveto P$c -7881.8438 311.1719 moveto +26932.8438 559.1719 moveto P$f -7888.6094 317.5469 moveto +26939.6094 565.5469 moveto P$5 -7892.3438 316.625 moveto +26943.3438 564.625 moveto P$6 -7894.4219 318.3594 moveto +26945.4219 566.3594 moveto P$4 -7906.875 316.3438 moveto -P$h -7912.8125 314.9063 moveto +26957.875 564.3438 moveto +P$g +26963.8125 562.9063 moveto P$1 -7912.8125 313.1563 moveto +26963.8125 561.1563 moveto P$2 -7921.8438 311.1719 moveto +26972.8438 559.1719 moveto P$f -7925.1719 313.3438 moveto +26976.1719 561.3438 moveto P$b -7925.1719 310.3594 moveto +26976.1719 558.3594 moveto P$c -7934.2188 310.3594 moveto +26985.2188 558.3594 moveto P$w -7935.1719 313.3438 moveto +26986.1719 561.3438 moveto P$b -7935.1719 310.3594 moveto +26986.1719 558.3594 moveto P$c -7945.3594 313.5781 moveto +26996.3594 561.5781 moveto P$0 -7951.6094 317.5469 moveto +27002.6094 565.5469 moveto P$5 -7955.3438 316.625 moveto +27006.3438 564.625 moveto P$6 -7959.8438 311.1719 moveto +27010.8438 559.1719 moveto P$f -7963.1719 313.3438 moveto +27014.1719 561.3438 moveto P$b -7963.1719 310.3594 moveto +27014.1719 558.3594 moveto P$c -7970.8125 314.9063 moveto +27021.8125 562.9063 moveto P$1 -7970.8125 313.1563 moveto +27021.8125 561.1563 moveto P$2 -7984.875 316.3438 moveto -P$h +27035.875 564.3438 moveto +P$g fill 0.7843 0.7843 0.7843 setrgbcolor newpath -8189 307 moveto +9143 811 moveto +283 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 93.7031 rlineto +-320 0 rlineto +0 -116 rlineto +9143 811 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +9143.5 811.5 moveto +282 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 92.7031 rlineto +-319 0 rlineto +0 -115 rlineto +9143.5 811.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +9144 812 moveto +281 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 91.7031 rlineto +-318 0 rlineto +0 -114 rlineto +9144 812 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +9144.5 812.5 moveto +280 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 90.7031 rlineto +-317 0 rlineto +0 -113 rlineto +9144.5 812.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +9145 813 moveto +279 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 89.7031 rlineto +-316 0 rlineto +0 -112 rlineto +9145 813 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +9145.5 813.5 moveto +278 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 88.7031 rlineto +-315 0 rlineto +0 -111 rlineto +9145.5 813.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +9146 814 moveto +277 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 87.7031 rlineto +-314 0 rlineto +0 -110 rlineto +9146 814 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +9140 808 moveto +283 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 93.7031 rlineto +-320 0 rlineto +0 -116 rlineto +9140 808 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +9140 808 moveto +283 0 rlineto +7 22.2969 rlineto +30 0 rlineto +0 93.7031 rlineto +-320 0 rlineto +0 -116 rlineto +9140 808 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +9140 830.2969 moveto +290 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9150.3594 817.5781 moveto +P$0 +9156.8125 818.9063 moveto +P$1 +9156.8125 817.1563 moveto +P$2 +9170.2656 818.6094 moveto +P$3 +9177.4219 822.3594 moveto +P$4 +9185.6094 821.5469 moveto +P$5 +9189.3438 820.625 moveto +P$6 +9196.8594 819.4219 moveto +P$7 +9204.1563 817.5781 moveto +P$8 +9212.3906 818.4688 moveto +P$9 +9210.7656 823.4219 moveto +P$a +9217.1719 817.3438 moveto +P$b +9217.1719 814.3594 moveto +P$c +9226.3906 823.7031 moveto +P$d +9224.7656 818.9375 moveto +P$e +9231.1719 817.3438 moveto +P$b +9231.1719 814.3594 moveto +P$c +9237.8438 815.1719 moveto +P$f +9244.6094 821.5469 moveto +P$5 +9248.3438 820.625 moveto +P$6 +9250.4219 822.3594 moveto +P$4 +9260.3906 823.7031 moveto +P$d +9258.7656 818.9375 moveto +P$e +9265.1719 814.3594 moveto +P$o +9272.8125 818.9063 moveto +P$1 +9272.8125 817.1563 moveto +P$2 +9283.25 823.4219 moveto +P$k +9281.625 818.4688 moveto +P$l +9292.6094 821.5469 moveto +P$5 +9296.3438 820.625 moveto +P$6 +9298.1719 814.3594 moveto +P$o +9302.1719 817.3438 moveto +P$b +9302.1719 814.3594 moveto +P$c +9305.7969 817.3438 moveto +P$p +9318.6094 821.5469 moveto +P$5 +9322.3438 820.625 moveto +P$6 +9326.8438 815.1719 moveto +P$f +9330.1719 817.3438 moveto +P$b +9330.1719 814.3594 moveto +P$c +9337.8125 818.9063 moveto +P$1 +9337.8125 817.1563 moveto +P$2 +9351.875 820.3438 moveto +P$g +9354.4219 822.3594 moveto +P$4 +9367.375 824.4375 moveto +P$11 +9377.875 820.3438 moveto +P$u +9383.6094 821.5469 moveto +P$5 +9387.3438 820.625 moveto +P$6 +9394.8594 819.4219 moveto +P$7 +9402.1563 817.5781 moveto +P$8 +9412.8125 821.1563 moveto +P$i +9410.2969 820.3438 moveto +P$j +9417.8438 815.1719 moveto +P$f +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +19909 431 moveto +268 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-279 0 rlineto +0 -224 rlineto +19909 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +19909.5 431.5 moveto +267 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 200.7031 rlineto +-278 0 rlineto +0 -223 rlineto +19909.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +19910 432 moveto +266 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 199.7031 rlineto +-277 0 rlineto +0 -222 rlineto +19910 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +19910.5 432.5 moveto +265 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 198.7031 rlineto +-276 0 rlineto +0 -221 rlineto +19910.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +19911 433 moveto +264 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 197.7031 rlineto +-275 0 rlineto +0 -220 rlineto +19911 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +19911.5 433.5 moveto +263 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 196.7031 rlineto +-274 0 rlineto +0 -219 rlineto +19911.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +19912 434 moveto +262 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 195.7031 rlineto +-273 0 rlineto +0 -218 rlineto +19912 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +19906 428 moveto +268 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-279 0 rlineto +0 -224 rlineto +19906 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +19906 428 moveto +268 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-279 0 rlineto +0 -224 rlineto +19906 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +19906 450.2969 moveto +275 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19916.3594 437.5781 moveto +P$0 +19922.8125 438.9063 moveto +P$1 +19922.8125 437.1563 moveto +P$2 +19936.2656 438.6094 moveto +P$3 +19943.4219 442.3594 moveto +P$4 +19951.6094 441.5469 moveto +P$5 +19955.3438 440.625 moveto +P$6 +19962.8594 439.4219 moveto +P$7 +19970.1563 437.5781 moveto +P$8 +19978.3906 438.4688 moveto +P$9 +19976.7656 443.4219 moveto +P$a +19983.1719 437.3438 moveto +P$b +19983.1719 434.3594 moveto +P$c +19992.3906 443.7031 moveto +P$d +19990.7656 438.9375 moveto +P$e +19997.1719 437.3438 moveto +P$b +19997.1719 434.3594 moveto +P$c +20003.8438 435.1719 moveto +P$f +20010.6094 441.5469 moveto +P$5 +20014.3438 440.625 moveto +P$6 +20016.4219 442.3594 moveto +P$4 +20021.1719 434.3594 moveto +P$n +20037.8125 441.1563 moveto +P$i +20035.2969 440.3438 moveto +P$j +20045.8594 439.4219 moveto +P$7 +20054.875 440.3438 moveto +P$g +20064.8125 441.1563 moveto +P$i +20062.2969 440.3438 moveto +P$j +20067.1719 434.3594 moveto +P$o +20071.4219 442.3594 moveto +P$4 +20078.625 443.8906 moveto +P$q +20080.25 438.9375 moveto +P$r +20093.8125 441.1563 moveto +P$i +20091.2969 440.3438 moveto +P$j +20101.8594 439.4219 moveto +P$7 +20110.2656 438.6094 moveto +P$3 +20117.1719 437.3438 moveto +P$b +20117.1719 434.3594 moveto +P$c +20127.1563 437.5781 moveto +P$8 +20136.1563 437.5781 moveto +P$8 +20139.1719 437.3438 moveto +P$b +20139.1719 434.3594 moveto +P$c +20146.8125 438.9063 moveto +P$1 +20146.8125 437.1563 moveto +P$2 +20160.875 440.3438 moveto +P$g +20169.1563 437.5781 moveto +P$8 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +31636 59 moveto +236 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-247 0 rlineto +0 -100 rlineto +31636 59 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +31636.5 59.5 moveto +235 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-246 0 rlineto +0 -99 rlineto +31636.5 59.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +31637 60 moveto +234 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-245 0 rlineto +0 -98 rlineto +31637 60 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +31637.5 60.5 moveto +233 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-244 0 rlineto +0 -97 rlineto +31637.5 60.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +31638 61 moveto +232 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-243 0 rlineto +0 -96 rlineto +31638 61 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +31638.5 61.5 moveto +231 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-242 0 rlineto +0 -95 rlineto +31638.5 61.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +31639 62 moveto +230 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-241 0 rlineto +0 -94 rlineto +31639 62 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +31633 56 moveto +236 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-247 0 rlineto +0 -100 rlineto +31633 56 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +31633 56 moveto +236 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-247 0 rlineto +0 -100 rlineto +31633 56 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +31633 78.2969 moveto +243 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31643.3594 65.5781 moveto +P$0 +31649.8125 66.9063 moveto +P$1 +31649.8125 65.1563 moveto +P$2 +31663.2656 66.6094 moveto +P$3 +31670.4219 70.3594 moveto +P$4 +31678.6094 69.5469 moveto +P$5 +31682.3438 68.625 moveto +P$6 +31689.8594 67.4219 moveto +P$7 +31697.1563 65.5781 moveto +P$8 +31705.3906 66.4688 moveto +P$9 +31703.7656 71.4219 moveto +P$a +31710.1719 65.3438 moveto +P$b +31710.1719 62.3594 moveto +P$c +31719.3906 71.7031 moveto +P$d +31717.7656 66.9375 moveto +P$e +31724.1719 65.3438 moveto +P$b +31724.1719 62.3594 moveto +P$c +31730.8438 63.1719 moveto +P$f +31737.6094 69.5469 moveto +P$5 +31741.3438 68.625 moveto +P$6 +31743.4219 70.3594 moveto +P$4 +31748.1719 62.3594 moveto +P$n +31764.8125 69.1563 moveto +P$i +31762.2969 68.3438 moveto +P$j +31772.8594 67.4219 moveto +P$7 +31781.875 68.3438 moveto +P$g +31791.8125 69.1563 moveto +P$i +31789.2969 68.3438 moveto +P$j +31794.1719 62.3594 moveto +P$o +31798.4219 70.3594 moveto +P$4 +31809.1563 65.5781 moveto +P$8 +31819.8125 69.1563 moveto +P$i +31817.2969 68.3438 moveto +P$j +31828.3594 65.5781 moveto +P$0 +31831.0938 70.0156 moveto +P$m +31846.8594 67.4219 moveto +P$7 +31848.1719 65.3438 moveto +P$b +31848.1719 62.3594 moveto +P$c +31854.8438 63.1719 moveto +P$f +31857.1719 65.3438 moveto +P$t +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +631 431 moveto +210 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-221 0 rlineto +0 -100 rlineto +631 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +631.5 431.5 moveto +209 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-220 0 rlineto +0 -99 rlineto +631.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +632 432 moveto +208 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-219 0 rlineto +0 -98 rlineto +632 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +632.5 432.5 moveto +207 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-218 0 rlineto +0 -97 rlineto +632.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +633 433 moveto +206 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-217 0 rlineto +0 -96 rlineto +633 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +633.5 433.5 moveto +205 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-216 0 rlineto +0 -95 rlineto +633.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +634 434 moveto +204 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-215 0 rlineto +0 -94 rlineto +634 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +628 428 moveto +210 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-221 0 rlineto +0 -100 rlineto +628 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +628 428 moveto +210 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-221 0 rlineto +0 -100 rlineto +628 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +628 450.2969 moveto +217 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +638.3594 437.5781 moveto +P$0 +644.8125 438.9063 moveto +P$1 +644.8125 437.1563 moveto +P$2 +658.2656 438.6094 moveto +P$3 +665.4219 442.3594 moveto +P$4 +673.6094 441.5469 moveto +P$5 +677.3438 440.625 moveto +P$6 +684.8594 439.4219 moveto +P$7 +692.1563 437.5781 moveto +P$8 +700.3906 438.4688 moveto +P$9 +698.7656 443.4219 moveto +P$a +705.1719 437.3438 moveto +P$b +705.1719 434.3594 moveto +P$c +714.3906 443.7031 moveto +P$d +712.7656 438.9375 moveto +P$e +719.1719 437.3438 moveto +P$b +719.1719 434.3594 moveto +P$c +725.8438 435.1719 moveto +P$f +732.6094 441.5469 moveto +P$5 +736.3438 440.625 moveto +P$6 +738.4219 442.3594 moveto +P$4 +743.1719 434.3594 moveto +P$o +750.8125 438.9063 moveto +P$1 +750.8125 437.1563 moveto +P$2 +764.875 440.3438 moveto +P$g +772.3906 438.4688 moveto +P$9 +770.7656 443.4219 moveto +P$a +780.8125 438.9063 moveto +P$1 +780.8125 437.1563 moveto +P$2 +794.875 440.3438 moveto +P$g +797.4219 442.3594 moveto +P$4 +805.6094 441.5469 moveto +P$5 +809.3438 440.625 moveto +P$6 +813.8438 435.1719 moveto +P$f +820.8125 438.9063 moveto +P$1 +820.8125 437.1563 moveto +P$2 +826.7969 437.3438 moveto +P$p +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +27240 431 moveto +222 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-233 0 rlineto +0 -224 rlineto +27240 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +27240.5 431.5 moveto +221 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 200.7031 rlineto +-232 0 rlineto +0 -223 rlineto +27240.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +27241 432 moveto +220 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 199.7031 rlineto +-231 0 rlineto +0 -222 rlineto +27241 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +27241.5 432.5 moveto +219 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 198.7031 rlineto +-230 0 rlineto +0 -221 rlineto +27241.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +27242 433 moveto +218 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 197.7031 rlineto +-229 0 rlineto +0 -220 rlineto +27242 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +27242.5 433.5 moveto +217 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 196.7031 rlineto +-228 0 rlineto +0 -219 rlineto +27242.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +27243 434 moveto +216 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 195.7031 rlineto +-227 0 rlineto +0 -218 rlineto +27243 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +27237 428 moveto +222 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-233 0 rlineto +0 -224 rlineto +27237 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +27237 428 moveto +222 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-233 0 rlineto +0 -224 rlineto +27237 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +27237 450.2969 moveto +229 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27247.3594 437.5781 moveto +P$0 +27253.8125 438.9063 moveto +P$1 +27253.8125 437.1563 moveto +P$2 +27267.2656 438.6094 moveto +P$3 +27274.4219 442.3594 moveto +P$4 +27282.6094 441.5469 moveto +P$5 +27286.3438 440.625 moveto +P$6 +27293.8594 439.4219 moveto +P$7 +27301.1563 437.5781 moveto +P$8 +27309.3906 438.4688 moveto +P$9 +27307.7656 443.4219 moveto +P$a +27314.1719 437.3438 moveto +P$b +27314.1719 434.3594 moveto +P$c +27323.3906 443.7031 moveto +P$d +27321.7656 438.9375 moveto +P$e +27328.1719 437.3438 moveto +P$b +27328.1719 434.3594 moveto +P$c +27334.8438 435.1719 moveto +P$f +27341.6094 441.5469 moveto +P$5 +27345.3438 440.625 moveto +P$6 +27347.4219 442.3594 moveto +P$4 +27352.1719 434.3594 moveto +P$o +27359.8125 438.9063 moveto +P$1 +27359.8125 437.1563 moveto +P$2 +27373.875 440.3438 moveto +P$g +27381.3906 438.4688 moveto +P$9 +27379.7656 443.4219 moveto +P$a +27389.8125 438.9063 moveto +P$1 +27389.8125 437.1563 moveto +P$2 +27403.875 440.3438 moveto +P$g +27406.4219 442.3594 moveto +P$4 +27413.8438 435.1719 moveto +P$f +27424.8125 441.1563 moveto +P$i +27422.2969 440.3438 moveto +P$j +27432.8594 439.4219 moveto +P$7 +27441.2656 438.6094 moveto +P$3 +27454.1563 437.5781 moveto +P$8 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +8229 555 moveto +261 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-272 0 rlineto +0 -100 rlineto +8229 555 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +8229.5 555.5 moveto +260 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-271 0 rlineto +0 -99 rlineto +8229.5 555.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +8230 556 moveto +259 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-270 0 rlineto +0 -98 rlineto +8230 556 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +8230.5 556.5 moveto +258 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-269 0 rlineto +0 -97 rlineto +8230.5 556.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +8231 557 moveto +257 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-268 0 rlineto +0 -96 rlineto +8231 557 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +8231.5 557.5 moveto +256 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-267 0 rlineto +0 -95 rlineto +8231.5 557.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +8232 558 moveto +255 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-266 0 rlineto +0 -94 rlineto +8232 558 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +8226 552 moveto +261 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-272 0 rlineto +0 -100 rlineto +8226 552 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +8226 552 moveto +261 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-272 0 rlineto +0 -100 rlineto +8226 552 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +8226 574.2969 moveto +268 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8236.3594 561.5781 moveto +P$0 +8242.8125 562.9063 moveto +P$1 +8242.8125 561.1563 moveto +P$2 +8256.2656 562.6094 moveto +P$3 +8263.4219 566.3594 moveto +P$4 +8271.6094 565.5469 moveto +P$5 +8275.3438 564.625 moveto +P$6 +8282.8594 563.4219 moveto +P$7 +8290.1563 561.5781 moveto +P$8 +8298.3906 562.4688 moveto +P$9 +8296.7656 567.4219 moveto +P$a +8303.1719 561.3438 moveto +P$b +8303.1719 558.3594 moveto +P$c +8312.3906 567.7031 moveto +P$d +8310.7656 562.9375 moveto +P$e +8317.1719 561.3438 moveto +P$b +8317.1719 558.3594 moveto +P$c +8323.8438 559.1719 moveto +P$f +8330.6094 565.5469 moveto +P$5 +8334.3438 564.625 moveto +P$6 +8336.4219 566.3594 moveto +P$4 +8341.1719 558.3594 moveto +P$o +8348.8125 562.9063 moveto +P$1 +8348.8125 561.1563 moveto +P$2 +8362.875 564.3438 moveto +P$g +8370.3906 562.4688 moveto +P$9 +8368.7656 567.4219 moveto +P$a +8378.8125 562.9063 moveto +P$1 +8378.8125 561.1563 moveto +P$2 +8392.875 564.3438 moveto +P$g +8395.4219 566.3594 moveto +P$4 +8406.3594 561.5781 moveto +P$0 +8416.2656 562.6094 moveto +P$3 +8429.1563 561.5781 moveto +P$8 +8432.4219 566.3594 moveto +P$4 +8442.3906 562.4688 moveto +P$9 +8440.7656 567.4219 moveto +P$a +8447.0938 566.0156 moveto +P$m +8461.25 567.4219 moveto +P$k +8459.625 562.4688 moveto +P$l +8467.1719 558.3594 moveto +P$o +8471.1719 561.3438 moveto +P$b +8471.1719 558.3594 moveto +P$c +8482.875 564.3438 moveto +P$g +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +11026 679 moveto +283 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 217.7031 rlineto +-294 0 rlineto +0 -240 rlineto +11026 679 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +11026.5 679.5 moveto +282 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 216.7031 rlineto +-293 0 rlineto +0 -239 rlineto +11026.5 679.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +11027 680 moveto +281 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 215.7031 rlineto +-292 0 rlineto +0 -238 rlineto +11027 680 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +11027.5 680.5 moveto +280 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 214.7031 rlineto +-291 0 rlineto +0 -237 rlineto +11027.5 680.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +11028 681 moveto +279 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 213.7031 rlineto +-290 0 rlineto +0 -236 rlineto +11028 681 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +11028.5 681.5 moveto +278 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 212.7031 rlineto +-289 0 rlineto +0 -235 rlineto +11028.5 681.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +11029 682 moveto +277 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 211.7031 rlineto +-288 0 rlineto +0 -234 rlineto +11029 682 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +11023 676 moveto +283 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 217.7031 rlineto +-294 0 rlineto +0 -240 rlineto +11023 676 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +11023 676 moveto +283 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 217.7031 rlineto +-294 0 rlineto +0 -240 rlineto +11023 676 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +11023 698.2969 moveto +290 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11033.3594 685.5781 moveto +P$0 +11039.8125 686.9063 moveto +P$1 +11039.8125 685.1563 moveto +P$2 +11053.2656 686.6094 moveto +P$3 +11060.4219 690.3594 moveto +P$4 +11068.6094 689.5469 moveto +P$5 +11072.3438 688.625 moveto +P$6 +11079.8594 687.4219 moveto +P$7 +11087.1563 685.5781 moveto +P$8 +11095.3906 686.4688 moveto +P$9 +11093.7656 691.4219 moveto +P$a +11100.1719 685.3438 moveto +P$b +11100.1719 682.3594 moveto +P$c +11109.3906 691.7031 moveto +P$d +11107.7656 686.9375 moveto +P$e +11114.1719 685.3438 moveto +P$b +11114.1719 682.3594 moveto +P$c +11120.8438 683.1719 moveto +P$f +11127.6094 689.5469 moveto +P$5 +11131.3438 688.625 moveto +P$6 +11133.4219 690.3594 moveto +P$4 +11138.1719 682.3594 moveto +P$o +11145.8125 686.9063 moveto +P$1 +11145.8125 685.1563 moveto +P$2 +11159.875 688.3438 moveto +P$g +11167.3906 686.4688 moveto +P$9 +11165.7656 691.4219 moveto +P$a +11175.8125 686.9063 moveto +P$1 +11175.8125 685.1563 moveto +P$2 +11189.875 688.3438 moveto +P$g +11192.4219 690.3594 moveto +P$4 +11203.3594 685.5781 moveto +P$0 +11213.2656 686.6094 moveto +P$3 +11226.1563 685.5781 moveto +P$8 +11229.4219 690.3594 moveto +P$4 +11239.2188 682.3594 moveto +P$w +11245.8594 687.4219 moveto +P$7 +11254.8125 689.1563 moveto +P$i +11252.2969 688.3438 moveto +P$j +11264.8125 689.1563 moveto +P$i +11262.2969 688.3438 moveto +P$j +11272.2188 682.3594 moveto +P$w +11276.8125 686.9063 moveto +P$1 +11276.8125 685.1563 moveto +P$2 +11288.8594 687.4219 moveto +P$7 +11297.2656 686.6094 moveto +P$3 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +3908 679 moveto +331 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 77.7031 rlineto +-377 0 rlineto +0 -100 rlineto +3908 679 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +3908.5 679.5 moveto +330 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 76.7031 rlineto +-376 0 rlineto +0 -99 rlineto +3908.5 679.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +3909 680 moveto +329 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 75.7031 rlineto +-375 0 rlineto +0 -98 rlineto +3909 680 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +3909.5 680.5 moveto +328 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 74.7031 rlineto +-374 0 rlineto +0 -97 rlineto +3909.5 680.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +3910 681 moveto +327 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 73.7031 rlineto +-373 0 rlineto +0 -96 rlineto +3910 681 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +3910.5 681.5 moveto +326 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 72.7031 rlineto +-372 0 rlineto +0 -95 rlineto +3910.5 681.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +3911 682 moveto +325 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 71.7031 rlineto +-371 0 rlineto +0 -94 rlineto +3911 682 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +3905 676 moveto +331 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 77.7031 rlineto +-377 0 rlineto +0 -100 rlineto +3905 676 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +3905 676 moveto +331 0 rlineto +7 22.2969 rlineto +39 0 rlineto +0 77.7031 rlineto +-377 0 rlineto +0 -100 rlineto +3905 676 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +3905 698.2969 moveto +338 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3915.3594 685.5781 moveto +P$0 +3921.8125 686.9063 moveto +P$1 +3921.8125 685.1563 moveto +P$2 +3935.2656 686.6094 moveto +P$3 +3942.4219 690.3594 moveto +P$4 +3950.6094 689.5469 moveto +P$5 +3954.3438 688.625 moveto +P$6 +3961.8594 687.4219 moveto +P$7 +3969.1563 685.5781 moveto +P$8 +3977.3906 686.4688 moveto +P$9 +3975.7656 691.4219 moveto +P$a +3982.1719 685.3438 moveto +P$b +3982.1719 682.3594 moveto +P$c +3991.3906 691.7031 moveto +P$d +3989.7656 686.9375 moveto +P$e +3996.1719 685.3438 moveto +P$b +3996.1719 682.3594 moveto +P$c +4002.8438 683.1719 moveto +P$f +4009.6094 689.5469 moveto +P$5 +4013.3438 688.625 moveto +P$6 +4015.4219 690.3594 moveto +P$4 +4020.1719 682.3594 moveto +P$o +4027.8125 686.9063 moveto +P$1 +4027.8125 685.1563 moveto +P$2 +4041.875 688.3438 moveto +P$g +4049.3906 686.4688 moveto +P$9 +4047.7656 691.4219 moveto +P$a +4057.8125 686.9063 moveto +P$1 +4057.8125 685.1563 moveto +P$2 +4071.875 688.3438 moveto +P$g +4074.4219 690.3594 moveto +P$4 +4085.3594 685.5781 moveto +P$0 +4095.2656 686.6094 moveto +P$3 +4108.1563 685.5781 moveto +P$8 +4111.4219 690.3594 moveto +P$4 +4121.2188 682.3594 moveto +P$w +4127.8594 687.4219 moveto +P$7 +4136.8125 689.1563 moveto +P$i +4134.2969 688.3438 moveto +P$j +4146.8125 689.1563 moveto +P$i +4144.2969 688.3438 moveto +P$j +4154.2188 682.3594 moveto +P$w +4158.8125 686.9063 moveto +P$1 +4158.8125 685.1563 moveto +P$2 +4170.8594 687.4219 moveto +P$7 +4179.2656 686.6094 moveto +P$3 +4186.4219 690.3594 moveto +P$4 +4194.6094 689.5469 moveto +P$5 +4198.3438 688.625 moveto +P$6 +4206.1563 685.5781 moveto +P$8 +4215.1563 685.5781 moveto +P$8 +4225.8125 689.1563 moveto +P$i +4223.2969 688.3438 moveto +P$j +4230.8438 683.1719 moveto +P$f +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +31907 59 moveto +244 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-255 0 rlineto +0 -100 rlineto +31907 59 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +31907.5 59.5 moveto +243 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-254 0 rlineto +0 -99 rlineto +31907.5 59.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +31908 60 moveto +242 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-253 0 rlineto +0 -98 rlineto +31908 60 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +31908.5 60.5 moveto +241 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-252 0 rlineto +0 -97 rlineto +31908.5 60.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +31909 61 moveto +240 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-251 0 rlineto +0 -96 rlineto +31909 61 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +31909.5 61.5 moveto +239 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-250 0 rlineto +0 -95 rlineto +31909.5 61.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +31910 62 moveto +238 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-249 0 rlineto +0 -94 rlineto +31910 62 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +31904 56 moveto +244 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-255 0 rlineto +0 -100 rlineto +31904 56 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +31904 56 moveto +244 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-255 0 rlineto +0 -100 rlineto +31904 56 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +31904 78.2969 moveto +251 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31914.3594 65.5781 moveto +P$0 +31920.8125 66.9063 moveto +P$1 +31920.8125 65.1563 moveto +P$2 +31934.2656 66.6094 moveto +P$3 +31941.4219 70.3594 moveto +P$4 +31949.6094 69.5469 moveto +P$5 +31953.3438 68.625 moveto +P$6 +31960.8594 67.4219 moveto +P$7 +31968.1563 65.5781 moveto +P$8 +31976.3906 66.4688 moveto +P$9 +31974.7656 71.4219 moveto +P$a +31981.1719 65.3438 moveto +P$b +31981.1719 62.3594 moveto +P$c +31990.3906 71.7031 moveto +P$d +31988.7656 66.9375 moveto +P$e +31995.1719 65.3438 moveto +P$b +31995.1719 62.3594 moveto +P$c +32001.8438 63.1719 moveto +P$f +32008.6094 69.5469 moveto +P$5 +32012.3438 68.625 moveto +P$6 +32014.4219 70.3594 moveto +P$4 +32019.1719 62.3594 moveto +P$o +32026.8125 66.9063 moveto +P$1 +32026.8125 65.1563 moveto +P$2 +32040.875 68.3438 moveto +P$g +32048.3906 66.4688 moveto +P$9 +32046.7656 71.4219 moveto +P$a +32056.8125 66.9063 moveto +P$1 +32056.8125 65.1563 moveto +P$2 +32070.875 68.3438 moveto +P$g +32073.4219 70.3594 moveto +P$4 +32078.1719 65.3438 moveto +P$b +32078.1719 62.3594 moveto +P$c +32089.2656 66.6094 moveto +P$3 +32098.625 71.8906 moveto +P$q +32100.25 66.9375 moveto +P$r +32109.8125 66.9063 moveto +P$1 +32109.8125 65.1563 moveto +P$2 +32121.8594 67.4219 moveto +P$7 +32125.8438 63.1719 moveto +P$f +32136.8125 69.1563 moveto +P$i +32134.2969 68.3438 moveto +P$j +32144.8594 67.4219 moveto +P$7 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +18328 307 moveto +230 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 77.7031 rlineto +-374 0 rlineto +0 -100 rlineto +18328 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +18328.5 307.5 moveto +229 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 76.7031 rlineto +-373 0 rlineto +0 -99 rlineto +18328.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +18329 308 moveto +228 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 75.7031 rlineto +-372 0 rlineto +0 -98 rlineto +18329 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +18329.5 308.5 moveto +227 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 74.7031 rlineto +-371 0 rlineto +0 -97 rlineto +18329.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +18330 309 moveto +226 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 73.7031 rlineto +-370 0 rlineto +0 -96 rlineto +18330 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +18330.5 309.5 moveto +225 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 72.7031 rlineto +-369 0 rlineto +0 -95 rlineto +18330.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +18331 310 moveto +224 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 71.7031 rlineto +-368 0 rlineto +0 -94 rlineto +18331 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +18325 304 moveto +230 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 77.7031 rlineto +-374 0 rlineto +0 -100 rlineto +18325 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +18325 304 moveto +230 0 rlineto +7 22.2969 rlineto +137 0 rlineto +0 77.7031 rlineto +-374 0 rlineto +0 -100 rlineto +18325 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +18325 326.2969 moveto +237 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18335.3594 313.5781 moveto +P$0 +18341.8125 314.9063 moveto +P$1 +18341.8125 313.1563 moveto +P$2 +18355.2656 314.6094 moveto +P$3 +18362.4219 318.3594 moveto +P$4 +18370.6094 317.5469 moveto +P$5 +18374.3438 316.625 moveto +P$6 +18381.8594 315.4219 moveto +P$7 +18389.1563 313.5781 moveto +P$8 +18397.3906 314.4688 moveto +P$9 +18395.7656 319.4219 moveto +P$a +18402.1719 313.3438 moveto +P$b +18402.1719 310.3594 moveto +P$c +18411.3906 319.7031 moveto +P$d +18409.7656 314.9375 moveto +P$e +18416.1719 313.3438 moveto +P$b +18416.1719 310.3594 moveto +P$c +18422.8438 311.1719 moveto +P$f +18429.6094 317.5469 moveto +P$5 +18433.3438 316.625 moveto +P$6 +18435.4219 318.3594 moveto +P$4 +18440.1719 310.3594 moveto +P$o +18447.8125 314.9063 moveto +P$1 +18447.8125 313.1563 moveto +P$2 +18461.875 316.3438 moveto +P$g +18469.3906 314.4688 moveto +P$9 +18467.7656 319.4219 moveto +P$a +18477.8125 314.9063 moveto +P$1 +18477.8125 313.1563 moveto +P$2 +18491.875 316.3438 moveto +P$g +18494.4219 318.3594 moveto +P$4 +18505.1563 313.5781 moveto +P$8 +18515.8125 317.1563 moveto +P$i +18513.2969 316.3438 moveto +P$j +18521.6094 317.5469 moveto +P$5 +18525.3438 316.625 moveto +P$6 +18532.8594 315.4219 moveto +P$7 +18540.3594 313.5781 moveto +P$0 +18550.875 316.3438 moveto +P$u +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +17228 307 moveto +285 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-296 0 rlineto +0 -100 rlineto +17228 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +17228.5 307.5 moveto +284 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-295 0 rlineto +0 -99 rlineto +17228.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +17229 308 moveto +283 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-294 0 rlineto +0 -98 rlineto +17229 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +17229.5 308.5 moveto +282 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-293 0 rlineto +0 -97 rlineto +17229.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +17230 309 moveto +281 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-292 0 rlineto +0 -96 rlineto +17230 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +17230.5 309.5 moveto +280 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-291 0 rlineto +0 -95 rlineto +17230.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +17231 310 moveto +279 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-290 0 rlineto +0 -94 rlineto +17231 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +17225 304 moveto +285 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-296 0 rlineto +0 -100 rlineto +17225 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +17225 304 moveto +285 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-296 0 rlineto +0 -100 rlineto +17225 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +17225 326.2969 moveto +292 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17235.3594 313.5781 moveto +P$0 +17241.8125 314.9063 moveto +P$1 +17241.8125 313.1563 moveto +P$2 +17255.2656 314.6094 moveto +P$3 +17262.4219 318.3594 moveto +P$4 +17270.6094 317.5469 moveto +P$5 +17274.3438 316.625 moveto +P$6 +17281.8594 315.4219 moveto +P$7 +17289.1563 313.5781 moveto +P$8 +17297.3906 314.4688 moveto +P$9 +17295.7656 319.4219 moveto +P$a +17302.1719 313.3438 moveto +P$b +17302.1719 310.3594 moveto +P$c +17311.3906 319.7031 moveto +P$d +17309.7656 314.9375 moveto +P$e +17316.1719 313.3438 moveto +P$b +17316.1719 310.3594 moveto +P$c +17322.8438 311.1719 moveto +P$f +17329.6094 317.5469 moveto +P$5 +17333.3438 316.625 moveto +P$6 +17335.4219 318.3594 moveto +P$4 +17340.1719 310.3594 moveto +P$o +17347.8125 314.9063 moveto +P$1 +17347.8125 313.1563 moveto +P$2 +17361.875 316.3438 moveto +P$g +17369.3906 314.4688 moveto +P$9 +17367.7656 319.4219 moveto +P$a +17377.8125 314.9063 moveto +P$1 +17377.8125 313.1563 moveto +P$2 +17391.875 316.3438 moveto +P$g +17394.4219 318.3594 moveto +P$4 +17405.1563 313.5781 moveto +P$8 +17415.8125 317.1563 moveto +P$i +17413.2969 316.3438 moveto +P$j +17421.6094 317.5469 moveto +P$5 +17425.3438 316.625 moveto +P$6 +17432.8594 315.4219 moveto +P$7 +17440.3594 313.5781 moveto +P$0 +17450.875 316.3438 moveto +P$u +17453.4219 318.3594 moveto +P$4 +17464.1563 313.5781 moveto +P$8 +17469.625 319.8906 moveto +P$q +17471.25 314.9375 moveto +P$r +17477.1719 313.3438 moveto +P$b +17477.1719 310.3594 moveto +P$c +17486.3906 314.4688 moveto +P$9 +17484.7656 319.4219 moveto +P$a +17498.8125 317.1563 moveto +P$i +17496.2969 316.3438 moveto +P$j +17506.8594 315.4219 moveto +P$7 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +17548 307 moveto +294 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-305 0 rlineto +0 -100 rlineto +17548 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +17548.5 307.5 moveto +293 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-304 0 rlineto +0 -99 rlineto +17548.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +17549 308 moveto +292 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-303 0 rlineto +0 -98 rlineto +17549 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +17549.5 308.5 moveto +291 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-302 0 rlineto +0 -97 rlineto +17549.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +17550 309 moveto +290 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-301 0 rlineto +0 -96 rlineto +17550 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +17550.5 309.5 moveto +289 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-300 0 rlineto +0 -95 rlineto +17550.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +17551 310 moveto +288 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-299 0 rlineto +0 -94 rlineto +17551 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +17545 304 moveto +294 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-305 0 rlineto +0 -100 rlineto +17545 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +17545 304 moveto +294 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-305 0 rlineto +0 -100 rlineto +17545 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +17545 326.2969 moveto +301 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17555.3594 313.5781 moveto +P$0 +17561.8125 314.9063 moveto +P$1 +17561.8125 313.1563 moveto +P$2 +17575.2656 314.6094 moveto +P$3 +17582.4219 318.3594 moveto +P$4 +17590.6094 317.5469 moveto +P$5 +17594.3438 316.625 moveto +P$6 +17601.8594 315.4219 moveto +P$7 +17609.1563 313.5781 moveto +P$8 +17617.3906 314.4688 moveto +P$9 +17615.7656 319.4219 moveto +P$a +17622.1719 313.3438 moveto +P$b +17622.1719 310.3594 moveto +P$c +17631.3906 319.7031 moveto +P$d +17629.7656 314.9375 moveto +P$e +17636.1719 313.3438 moveto +P$b +17636.1719 310.3594 moveto +P$c +17642.8438 311.1719 moveto +P$f +17649.6094 317.5469 moveto +P$5 +17653.3438 316.625 moveto +P$6 +17655.4219 318.3594 moveto +P$4 +17660.1719 310.3594 moveto +P$o +17667.8125 314.9063 moveto +P$1 +17667.8125 313.1563 moveto +P$2 +17681.875 316.3438 moveto +P$g +17689.3906 314.4688 moveto +P$9 +17687.7656 319.4219 moveto +P$a +17697.8125 314.9063 moveto +P$1 +17697.8125 313.1563 moveto +P$2 +17711.875 316.3438 moveto +P$g +17714.4219 318.3594 moveto +P$4 +17721.8438 311.1719 moveto +P$f +17732.8125 317.1563 moveto +P$i +17730.2969 316.3438 moveto +P$j +17740.8594 315.4219 moveto +P$7 +17749.2656 314.6094 moveto +P$3 +17762.1563 313.5781 moveto +P$8 +17765.4219 318.3594 moveto +P$4 +17770.1719 313.3438 moveto +P$b +17770.1719 310.3594 moveto +P$c +17781.875 316.3438 moveto +P$g +17789.3906 314.4688 moveto +P$9 +17787.7656 319.4219 moveto +P$a +17801.8125 317.1563 moveto +P$i +17799.2969 316.3438 moveto +P$j +17806.1094 317.0781 moveto +P$s +17813.1719 313.3438 moveto +P$b +17813.1719 310.3594 moveto +P$c +17824.875 316.3438 moveto +P$g +17832.3906 319.7031 moveto +P$d +17830.7656 314.9375 moveto +P$e +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +11601 679 moveto +281 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 217.7031 rlineto +-603 0 rlineto +0 -240 rlineto +11601 679 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +11601.5 679.5 moveto +280 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 216.7031 rlineto +-602 0 rlineto +0 -239 rlineto +11601.5 679.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +11602 680 moveto +279 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 215.7031 rlineto +-601 0 rlineto +0 -238 rlineto +11602 680 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +11602.5 680.5 moveto +278 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 214.7031 rlineto +-600 0 rlineto +0 -237 rlineto +11602.5 680.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +11603 681 moveto +277 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 213.7031 rlineto +-599 0 rlineto +0 -236 rlineto +11603 681 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +11603.5 681.5 moveto +276 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 212.7031 rlineto +-598 0 rlineto +0 -235 rlineto +11603.5 681.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +11604 682 moveto +275 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 211.7031 rlineto +-597 0 rlineto +0 -234 rlineto +11604 682 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +11598 676 moveto +281 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 217.7031 rlineto +-603 0 rlineto +0 -240 rlineto +11598 676 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +11598 676 moveto +281 0 rlineto +7 22.2969 rlineto +315 0 rlineto +0 217.7031 rlineto +-603 0 rlineto +0 -240 rlineto +11598 676 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +11598 698.2969 moveto +288 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11608.3594 685.5781 moveto +P$0 +11614.8125 686.9063 moveto +P$1 +11614.8125 685.1563 moveto +P$2 +11628.2656 686.6094 moveto +P$3 +11635.4219 690.3594 moveto +P$4 +11643.6094 689.5469 moveto +P$5 +11647.3438 688.625 moveto +P$6 +11654.8594 687.4219 moveto +P$7 +11662.1563 685.5781 moveto +P$8 +11670.3906 686.4688 moveto +P$9 +11668.7656 691.4219 moveto +P$a +11675.1719 685.3438 moveto +P$b +11675.1719 682.3594 moveto +P$c +11684.3906 691.7031 moveto +P$d +11682.7656 686.9375 moveto +P$e +11689.1719 685.3438 moveto +P$b +11689.1719 682.3594 moveto +P$c +11695.8438 683.1719 moveto +P$f +11702.6094 689.5469 moveto +P$5 +11706.3438 688.625 moveto +P$6 +11708.4219 690.3594 moveto +P$4 +11713.1719 682.3594 moveto +P$o +11720.8125 686.9063 moveto +P$1 +11720.8125 685.1563 moveto +P$2 +11734.875 688.3438 moveto +P$g +11742.3906 686.4688 moveto +P$9 +11740.7656 691.4219 moveto +P$a +11750.8125 686.9063 moveto +P$1 +11750.8125 685.1563 moveto +P$2 +11764.875 688.3438 moveto +P$g +11767.4219 690.3594 moveto +P$4 +11778.3594 685.5781 moveto +P$0 +11784.8125 686.9063 moveto +P$1 +11784.8125 685.1563 moveto +P$2 +11798.875 688.3438 moveto +P$g +11803.8438 683.1719 moveto +P$f +11814.8125 689.1563 moveto +P$i +11812.2969 688.3438 moveto +P$j +11824.875 688.3438 moveto +P$g +11829.8438 683.1719 moveto +P$f +11835.8438 683.1719 moveto +P$f +11838.1719 685.3438 moveto +P$t +11850.625 691.8906 moveto +P$q +11852.25 686.9375 moveto +P$r +11865.8125 689.1563 moveto +P$i +11863.2969 688.3438 moveto +P$j +11874.1563 685.5781 moveto +P$8 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +29642 431 moveto +254 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-265 0 rlineto +0 -224 rlineto +29642 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +29642.5 431.5 moveto +253 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 200.7031 rlineto +-264 0 rlineto +0 -223 rlineto +29642.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +29643 432 moveto +252 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 199.7031 rlineto +-263 0 rlineto +0 -222 rlineto +29643 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +29643.5 432.5 moveto +251 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 198.7031 rlineto +-262 0 rlineto +0 -221 rlineto +29643.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +29644 433 moveto +250 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 197.7031 rlineto +-261 0 rlineto +0 -220 rlineto +29644 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +29644.5 433.5 moveto +249 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 196.7031 rlineto +-260 0 rlineto +0 -219 rlineto +29644.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +29645 434 moveto +248 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 195.7031 rlineto +-259 0 rlineto +0 -218 rlineto +29645 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +29639 428 moveto +254 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-265 0 rlineto +0 -224 rlineto +29639 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +29639 428 moveto +254 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 201.7031 rlineto +-265 0 rlineto +0 -224 rlineto +29639 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +29639 450.2969 moveto +261 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29649.3594 437.5781 moveto +P$0 +29655.8125 438.9063 moveto +P$1 +29655.8125 437.1563 moveto +P$2 +29669.2656 438.6094 moveto +P$3 +29676.4219 442.3594 moveto +P$4 +29684.6094 441.5469 moveto +P$5 +29688.3438 440.625 moveto +P$6 +29695.8594 439.4219 moveto +P$7 +29703.1563 437.5781 moveto +P$8 +29711.3906 438.4688 moveto +P$9 +29709.7656 443.4219 moveto +P$a +29716.1719 437.3438 moveto +P$b +29716.1719 434.3594 moveto +P$c +29725.3906 443.7031 moveto +P$d +29723.7656 438.9375 moveto +P$e +29730.1719 437.3438 moveto +P$b +29730.1719 434.3594 moveto +P$c +29736.8438 435.1719 moveto +P$f +29743.6094 441.5469 moveto +P$5 +29747.3438 440.625 moveto +P$6 +29749.4219 442.3594 moveto +P$4 +29754.1719 434.3594 moveto +P$o +29761.8125 438.9063 moveto +P$1 +29761.8125 437.1563 moveto +P$2 +29775.875 440.3438 moveto +P$g +29783.3906 438.4688 moveto +P$9 +29781.7656 443.4219 moveto +P$a +29791.8125 438.9063 moveto +P$1 +29791.8125 437.1563 moveto +P$2 +29805.875 440.3438 moveto +P$g +29808.4219 442.3594 moveto +P$4 +29813.0938 442.0156 moveto +P$m +29829.1563 437.5781 moveto +P$8 +29839.8125 441.1563 moveto +P$i +29837.2969 440.3438 moveto +P$j +29847.8594 439.4219 moveto +P$7 +29851.625 443.8906 moveto +P$q +29853.25 438.9375 moveto +P$r +29864.8594 439.4219 moveto +P$7 +29873.8125 441.1563 moveto +P$i +29871.2969 440.3438 moveto +P$j +29881.2188 434.3594 moveto +P$w +29888.1563 437.5781 moveto +P$8 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +19505 307 moveto +198 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 201.7031 rlineto +-380 0 rlineto +0 -224 rlineto +19505 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +19505.5 307.5 moveto +197 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 200.7031 rlineto +-379 0 rlineto +0 -223 rlineto +19505.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +19506 308 moveto +196 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 199.7031 rlineto +-378 0 rlineto +0 -222 rlineto +19506 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +19506.5 308.5 moveto +195 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 198.7031 rlineto +-377 0 rlineto +0 -221 rlineto +19506.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +19507 309 moveto +194 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 197.7031 rlineto +-376 0 rlineto +0 -220 rlineto +19507 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +19507.5 309.5 moveto +193 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 196.7031 rlineto +-375 0 rlineto +0 -219 rlineto +19507.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +19508 310 moveto +192 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 195.7031 rlineto +-374 0 rlineto +0 -218 rlineto +19508 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +19502 304 moveto +198 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 201.7031 rlineto +-380 0 rlineto +0 -224 rlineto +19502 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +19502 304 moveto +198 0 rlineto +7 22.2969 rlineto +175 0 rlineto +0 201.7031 rlineto +-380 0 rlineto +0 -224 rlineto +19502 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +19502 326.2969 moveto +205 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19512.3594 313.5781 moveto +P$0 +19518.8125 314.9063 moveto +P$1 +19518.8125 313.1563 moveto +P$2 +19532.2656 314.6094 moveto +P$3 +19539.4219 318.3594 moveto +P$4 +19547.6094 317.5469 moveto +P$5 +19551.3438 316.625 moveto +P$6 +19558.8594 315.4219 moveto +P$7 +19566.1563 313.5781 moveto +P$8 +19574.3906 314.4688 moveto +P$9 +19572.7656 319.4219 moveto +P$a +19579.1719 313.3438 moveto +P$b +19579.1719 310.3594 moveto +P$c +19588.3906 319.7031 moveto +P$d +19586.7656 314.9375 moveto +P$e +19593.1719 313.3438 moveto +P$b +19593.1719 310.3594 moveto +P$c +19599.8438 311.1719 moveto +P$f +19606.6094 317.5469 moveto +P$5 +19610.3438 316.625 moveto +P$6 +19612.4219 318.3594 moveto +P$4 +19624.875 316.3438 moveto +P$g +19630.6094 317.5469 moveto +P$5 +19634.3438 316.625 moveto +P$6 +19635.2188 313.3438 moveto +P$v +19645.1719 313.3438 moveto +P$b +19645.1719 310.3594 moveto +P$c +19654.3906 319.7031 moveto +P$d +19652.7656 314.9375 moveto +P$e +19662.6094 317.5469 moveto +P$5 +19666.3438 316.625 moveto +P$6 +19670.8438 311.1719 moveto +P$f +19674.1719 313.3438 moveto +P$b +19674.1719 310.3594 moveto +P$c +19681.8125 314.9063 moveto +P$1 +19681.8125 313.1563 moveto +P$2 +19695.875 316.3438 moveto +P$g +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +28121 307 moveto +256 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 201.7031 rlineto +-371 0 rlineto +0 -224 rlineto +28121 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +28121.5 307.5 moveto +255 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 200.7031 rlineto +-370 0 rlineto +0 -223 rlineto +28121.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +28122 308 moveto +254 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 199.7031 rlineto +-369 0 rlineto +0 -222 rlineto +28122 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +28122.5 308.5 moveto +253 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 198.7031 rlineto +-368 0 rlineto +0 -221 rlineto +28122.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +28123 309 moveto +252 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 197.7031 rlineto +-367 0 rlineto +0 -220 rlineto +28123 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +28123.5 309.5 moveto +251 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 196.7031 rlineto +-366 0 rlineto +0 -219 rlineto +28123.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +28124 310 moveto +250 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 195.7031 rlineto +-365 0 rlineto +0 -218 rlineto +28124 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +28118 304 moveto +256 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 201.7031 rlineto +-371 0 rlineto +0 -224 rlineto +28118 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28118 304 moveto +256 0 rlineto +7 22.2969 rlineto +108 0 rlineto +0 201.7031 rlineto +-371 0 rlineto +0 -224 rlineto +28118 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28118 326.2969 moveto +263 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28128.3594 313.5781 moveto +P$0 +28134.8125 314.9063 moveto +P$1 +28134.8125 313.1563 moveto +P$2 +28148.2656 314.6094 moveto +P$3 +28155.4219 318.3594 moveto +P$4 +28163.6094 317.5469 moveto +P$5 +28167.3438 316.625 moveto +P$6 +28174.8594 315.4219 moveto +P$7 +28182.1563 313.5781 moveto +P$8 +28190.3906 314.4688 moveto +P$9 +28188.7656 319.4219 moveto +P$a +28195.1719 313.3438 moveto +P$b +28195.1719 310.3594 moveto +P$c +28204.3906 319.7031 moveto +P$d +28202.7656 314.9375 moveto +P$e +28209.1719 313.3438 moveto +P$b +28209.1719 310.3594 moveto +P$c +28215.8438 311.1719 moveto +P$f +28222.6094 317.5469 moveto +P$5 +28226.3438 316.625 moveto +P$6 +28228.4219 318.3594 moveto +P$4 +28240.875 316.3438 moveto +P$g +28246.6094 317.5469 moveto +P$5 +28250.3438 316.625 moveto +P$6 +28251.2188 313.3438 moveto +P$v +28261.1719 313.3438 moveto +P$b +28261.1719 310.3594 moveto +P$c +28270.3906 319.7031 moveto +P$d +28268.7656 314.9375 moveto +P$e +28278.6094 317.5469 moveto +P$5 +28282.3438 316.625 moveto +P$6 +28286.8438 311.1719 moveto +P$f +28290.1719 313.3438 moveto +P$b +28290.1719 310.3594 moveto +P$c +28297.8125 314.9063 moveto +P$1 +28297.8125 313.1563 moveto +P$2 +28311.875 316.3438 moveto +P$g +28314.4219 318.3594 moveto +P$4 +28321.625 319.8906 moveto +P$q +28323.25 314.9375 moveto +P$r +28332.8125 314.9063 moveto +P$1 +28332.8125 313.1563 moveto +P$2 +28344.8594 315.4219 moveto +P$7 +28348.8438 311.1719 moveto +P$f +28352.1719 310.3594 moveto +P$o +28363.8125 317.1563 moveto +P$i +28361.2969 316.3438 moveto +P$j +28368.8438 311.1719 moveto +P$f +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +17877 307 moveto 211 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 77.7031 rlineto -377 0 rlineto 0 -100 rlineto -8189 307 lineto +17877 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -8189.5 307.5 moveto +17877.5 307.5 moveto 210 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 76.7031 rlineto -376 0 rlineto 0 -99 rlineto -8189.5 307.5 lineto +17877.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -8190 308 moveto +17878 308 moveto 209 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 75.7031 rlineto -375 0 rlineto 0 -98 rlineto -8190 308 lineto +17878 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -8190.5 308.5 moveto +17878.5 308.5 moveto 208 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 74.7031 rlineto -374 0 rlineto 0 -97 rlineto -8190.5 308.5 lineto +17878.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -8191 309 moveto +17879 309 moveto 207 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 73.7031 rlineto -373 0 rlineto 0 -96 rlineto -8191 309 lineto +17879 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -8191.5 309.5 moveto +17879.5 309.5 moveto 206 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 72.7031 rlineto -372 0 rlineto 0 -95 rlineto -8191.5 309.5 lineto +17879.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -8192 310 moveto +17880 310 moveto 205 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 71.7031 rlineto -371 0 rlineto 0 -94 rlineto -8192 310 lineto +17880 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -8186 304 moveto +17874 304 moveto 211 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 77.7031 rlineto -377 0 rlineto 0 -100 rlineto -8186 304 lineto +17874 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -8186 304 moveto +17874 304 moveto 211 0 rlineto 7 22.2969 rlineto 159 0 rlineto 0 77.7031 rlineto -377 0 rlineto 0 -100 rlineto -8186 304 lineto +17874 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -8186 326.2969 moveto +17874 326.2969 moveto 218 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -8196.3594 313.5781 moveto +17884.3594 313.5781 moveto P$0 -8202.8125 314.9063 moveto +17890.8125 314.9063 moveto P$1 -8202.8125 313.1563 moveto +17890.8125 313.1563 moveto P$2 -8216.2656 314.6094 moveto +17904.2656 314.6094 moveto P$3 -8223.4219 318.3594 moveto +17911.4219 318.3594 moveto P$4 -8231.6094 317.5469 moveto +17919.6094 317.5469 moveto P$5 -8235.3438 316.625 moveto +17923.3438 316.625 moveto P$6 -8242.8594 315.4219 moveto +17930.8594 315.4219 moveto P$7 -8250.1563 313.5781 moveto +17938.1563 313.5781 moveto P$8 -8258.3906 314.4688 moveto +17946.3906 314.4688 moveto P$9 -8256.7656 319.4219 moveto +17944.7656 319.4219 moveto P$a -8263.1719 313.3438 moveto +17951.1719 313.3438 moveto P$b -8263.1719 310.3594 moveto +17951.1719 310.3594 moveto P$c -8272.3906 319.7031 moveto +17960.3906 319.7031 moveto P$d -8270.7656 314.9375 moveto +17958.7656 314.9375 moveto P$e -8277.1719 313.3438 moveto +17965.1719 313.3438 moveto P$b -8277.1719 310.3594 moveto +17965.1719 310.3594 moveto P$c -8283.8438 311.1719 moveto +17971.8438 311.1719 moveto P$f -8290.6094 317.5469 moveto +17978.6094 317.5469 moveto P$5 -8294.3438 316.625 moveto +17982.3438 316.625 moveto P$6 -8296.4219 318.3594 moveto +17984.4219 318.3594 moveto P$4 -8303.625 319.8906 moveto +17991.625 319.8906 moveto P$q -8305.25 314.9375 moveto +17993.25 314.9375 moveto P$r -8318.8125 317.1563 moveto +18006.8125 317.1563 moveto +P$i +18004.2969 316.3438 moveto P$j -8316.2969 316.3438 moveto -P$k -8326.8594 315.4219 moveto +18014.8594 315.4219 moveto P$7 -8334.1563 313.5781 moveto +18022.1563 313.5781 moveto P$8 -8337.1719 313.3438 moveto +18025.1719 313.3438 moveto P$b -8337.1719 310.3594 moveto +18025.1719 310.3594 moveto P$c -8347.1563 313.5781 moveto +18035.1563 313.5781 moveto P$8 -8352.8438 311.1719 moveto +18040.8438 311.1719 moveto P$f -8363.8125 317.1563 moveto +18051.8125 317.1563 moveto +P$i +18049.2969 316.3438 moveto P$j -8361.2969 316.3438 moveto -P$k -8373.875 316.3438 moveto -P$h -8382.3594 313.5781 moveto +18061.875 316.3438 moveto +P$g +18070.3594 313.5781 moveto P$0 -8392.8125 317.1563 moveto +18080.8125 317.1563 moveto +P$i +18078.2969 316.3438 moveto P$j -8390.2969 316.3438 moveto -P$k fill 0.7843 0.7843 0.7843 setrgbcolor newpath -9628 307 moveto -308 0 rlineto +26233 679 moveto +170 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 77.7031 rlineto --319 0 rlineto -0 -100 rlineto -9628 307 lineto +140 0 rlineto +0 217.7031 rlineto +-317 0 rlineto +0 -240 rlineto +26233 679 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -9628.5 307.5 moveto -307 0 rlineto +26233.5 679.5 moveto +169 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 76.7031 rlineto --318 0 rlineto -0 -99 rlineto -9628.5 307.5 lineto +140 0 rlineto +0 216.7031 rlineto +-316 0 rlineto +0 -239 rlineto +26233.5 679.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -9629 308 moveto -306 0 rlineto +26234 680 moveto +168 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 75.7031 rlineto --317 0 rlineto -0 -98 rlineto -9629 308 lineto +140 0 rlineto +0 215.7031 rlineto +-315 0 rlineto +0 -238 rlineto +26234 680 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -9629.5 308.5 moveto -305 0 rlineto +26234.5 680.5 moveto +167 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 74.7031 rlineto --316 0 rlineto -0 -97 rlineto -9629.5 308.5 lineto +140 0 rlineto +0 214.7031 rlineto +-314 0 rlineto +0 -237 rlineto +26234.5 680.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -9630 309 moveto -304 0 rlineto +26235 681 moveto +166 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 73.7031 rlineto --315 0 rlineto -0 -96 rlineto -9630 309 lineto +140 0 rlineto +0 213.7031 rlineto +-313 0 rlineto +0 -236 rlineto +26235 681 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -9630.5 309.5 moveto -303 0 rlineto +26235.5 681.5 moveto +165 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 72.7031 rlineto --314 0 rlineto -0 -95 rlineto -9630.5 309.5 lineto +140 0 rlineto +0 212.7031 rlineto +-312 0 rlineto +0 -235 rlineto +26235.5 681.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -9631 310 moveto -302 0 rlineto +26236 682 moveto +164 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 71.7031 rlineto --313 0 rlineto -0 -94 rlineto -9631 310 lineto +140 0 rlineto +0 211.7031 rlineto +-311 0 rlineto +0 -234 rlineto +26236 682 lineto closepath eofill 1 1 1 setrgbcolor newpath -9625 304 moveto -308 0 rlineto +26230 676 moveto +170 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 77.7031 rlineto --319 0 rlineto -0 -100 rlineto -9625 304 lineto +140 0 rlineto +0 217.7031 rlineto +-317 0 rlineto +0 -240 rlineto +26230 676 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -9625 304 moveto -308 0 rlineto +26230 676 moveto +170 0 rlineto 7 22.2969 rlineto -4 0 rlineto -0 77.7031 rlineto --319 0 rlineto -0 -100 rlineto -9625 304 lineto +140 0 rlineto +0 217.7031 rlineto +-317 0 rlineto +0 -240 rlineto +26230 676 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -9625 326.2969 moveto +26230 698.2969 moveto +177 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26240.3594 685.5781 moveto +P$0 +26246.8125 686.9063 moveto +P$1 +26246.8125 685.1563 moveto +P$2 +26260.2656 686.6094 moveto +P$3 +26267.4219 690.3594 moveto +P$4 +26275.6094 689.5469 moveto +P$5 +26279.3438 688.625 moveto +P$6 +26286.8594 687.4219 moveto +P$7 +26294.1563 685.5781 moveto +P$8 +26302.3906 686.4688 moveto +P$9 +26300.7656 691.4219 moveto +P$a +26307.1719 685.3438 moveto +P$b +26307.1719 682.3594 moveto +P$c +26316.3906 691.7031 moveto +P$d +26314.7656 686.9375 moveto +P$e +26321.1719 685.3438 moveto +P$b +26321.1719 682.3594 moveto +P$c +26327.8438 683.1719 moveto +P$f +26334.6094 689.5469 moveto +P$5 +26338.3438 688.625 moveto +P$6 +26340.4219 690.3594 moveto +P$4 +26347.625 691.8906 moveto +P$q +26349.25 686.9375 moveto +P$r +26358.8125 686.9063 moveto +P$1 +26358.8125 685.1563 moveto +P$2 +26370.8594 687.4219 moveto +P$7 +26374.8438 683.1719 moveto +P$f +26378.1719 682.3594 moveto +P$o +26389.8125 689.1563 moveto +P$i +26387.2969 688.3438 moveto +P$j +26394.8438 683.1719 moveto +P$f +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +25437 307 moveto +250 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 325.7031 rlineto +-261 0 rlineto +0 -348 rlineto +25437 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +25437.5 307.5 moveto +249 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 324.7031 rlineto +-260 0 rlineto +0 -347 rlineto +25437.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +25438 308 moveto +248 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 323.7031 rlineto +-259 0 rlineto +0 -346 rlineto +25438 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +25438.5 308.5 moveto +247 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 322.7031 rlineto +-258 0 rlineto +0 -345 rlineto +25438.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +25439 309 moveto +246 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 321.7031 rlineto +-257 0 rlineto +0 -344 rlineto +25439 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +25439.5 309.5 moveto +245 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 320.7031 rlineto +-256 0 rlineto +0 -343 rlineto +25439.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +25440 310 moveto +244 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 319.7031 rlineto +-255 0 rlineto +0 -342 rlineto +25440 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +25434 304 moveto +250 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 325.7031 rlineto +-261 0 rlineto +0 -348 rlineto +25434 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25434 304 moveto +250 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 325.7031 rlineto +-261 0 rlineto +0 -348 rlineto +25434 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +25434 326.2969 moveto +257 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25444.3594 313.5781 moveto +P$0 +25450.8125 314.9063 moveto +P$1 +25450.8125 313.1563 moveto +P$2 +25464.2656 314.6094 moveto +P$3 +25471.4219 318.3594 moveto +P$4 +25479.6094 317.5469 moveto +P$5 +25483.3438 316.625 moveto +P$6 +25490.8594 315.4219 moveto +P$7 +25498.1563 313.5781 moveto +P$8 +25506.3906 314.4688 moveto +P$9 +25504.7656 319.4219 moveto +P$a +25511.1719 313.3438 moveto +P$b +25511.1719 310.3594 moveto +P$c +25520.3906 319.7031 moveto +P$d +25518.7656 314.9375 moveto +P$e +25525.1719 313.3438 moveto +P$b +25525.1719 310.3594 moveto +P$c +25531.8438 311.1719 moveto +P$f +25538.6094 317.5469 moveto +P$5 +25542.3438 316.625 moveto +P$6 +25544.4219 318.3594 moveto +P$4 +25551.625 319.8906 moveto +P$q +25553.25 314.9375 moveto +P$r +25562.8125 314.9063 moveto +P$1 +25562.8125 313.1563 moveto +P$2 +25574.8594 315.4219 moveto +P$7 +25578.8438 311.1719 moveto +P$f +25585.6094 317.5469 moveto +P$5 +25589.3438 316.625 moveto +P$6 +25591.1719 310.3594 moveto +P$o +25594.5 313.3438 moveto +P$h +25612.8125 314.9063 moveto +P$1 +25612.8125 313.1563 moveto +P$2 +25624.8594 315.4219 moveto +P$7 +25626.1719 310.3594 moveto +P$n +25641.1563 313.5781 moveto +P$8 +25646.625 319.8906 moveto +P$q +25648.25 314.9375 moveto +P$r +25657.6094 317.5469 moveto +P$5 +25661.3438 316.625 moveto +P$6 +25669.3594 313.5781 moveto +P$0 +25679.8125 317.1563 moveto +P$i +25677.2969 316.3438 moveto +P$j +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +28708 307 moveto +308 0 rlineto +7 22.2969 rlineto +1628 0 rlineto +0 77.7031 rlineto +-1943 0 rlineto +0 -100 rlineto +28708 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +28708.5 307.5 moveto +308 0 rlineto +7 22.2969 rlineto +1627 0 rlineto +0 76.7031 rlineto +-1942 0 rlineto +0 -99 rlineto +28708.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +28709 308 moveto +308 0 rlineto +7 22.2969 rlineto +1626 0 rlineto +0 75.7031 rlineto +-1941 0 rlineto +0 -98 rlineto +28709 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +28709.5 308.5 moveto +308 0 rlineto +7 22.2969 rlineto +1625 0 rlineto +0 74.7031 rlineto +-1940 0 rlineto +0 -97 rlineto +28709.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +28710 309 moveto +308 0 rlineto +7 22.2969 rlineto +1624 0 rlineto +0 73.7031 rlineto +-1939 0 rlineto +0 -96 rlineto +28710 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +28710.5 309.5 moveto +308 0 rlineto +7 22.2969 rlineto +1623 0 rlineto +0 72.7031 rlineto +-1938 0 rlineto +0 -95 rlineto +28710.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +28711 310 moveto +308 0 rlineto +7 22.2969 rlineto +1622 0 rlineto +0 71.7031 rlineto +-1937 0 rlineto +0 -94 rlineto +28711 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +28705 304 moveto +308 0 rlineto +7 22.2969 rlineto +1628 0 rlineto +0 77.7031 rlineto +-1943 0 rlineto +0 -100 rlineto +28705 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28705 304 moveto +308 0 rlineto +7 22.2969 rlineto +1628 0 rlineto +0 77.7031 rlineto +-1943 0 rlineto +0 -100 rlineto +28705 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28705 326.2969 moveto 315 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -9635.3594 313.5781 moveto +28715.3594 313.5781 moveto P$0 -9641.8125 314.9063 moveto +28721.8125 314.9063 moveto P$1 -9641.8125 313.1563 moveto +28721.8125 313.1563 moveto P$2 -9655.2656 314.6094 moveto +28735.2656 314.6094 moveto P$3 -9662.4219 318.3594 moveto +28742.4219 318.3594 moveto P$4 -9670.6094 317.5469 moveto +28750.6094 317.5469 moveto P$5 -9674.3438 316.625 moveto +28754.3438 316.625 moveto P$6 -9681.8594 315.4219 moveto +28761.8594 315.4219 moveto P$7 -9689.1563 313.5781 moveto +28769.1563 313.5781 moveto P$8 -9697.3906 314.4688 moveto +28777.3906 314.4688 moveto P$9 -9695.7656 319.4219 moveto +28775.7656 319.4219 moveto P$a -9702.1719 313.3438 moveto +28782.1719 313.3438 moveto P$b -9702.1719 310.3594 moveto +28782.1719 310.3594 moveto P$c -9711.3906 319.7031 moveto +28791.3906 319.7031 moveto P$d -9709.7656 314.9375 moveto +28789.7656 314.9375 moveto P$e -9716.1719 313.3438 moveto +28796.1719 313.3438 moveto P$b -9716.1719 310.3594 moveto +28796.1719 310.3594 moveto P$c -9722.8438 311.1719 moveto +28802.8438 311.1719 moveto P$f -9729.6094 317.5469 moveto +28809.6094 317.5469 moveto P$5 -9733.3438 316.625 moveto +28813.3438 316.625 moveto P$6 -9735.4219 318.3594 moveto +28815.4219 318.3594 moveto P$4 -9746.3594 313.5781 moveto -P$0 -9756.2656 314.6094 moveto -P$3 -9769.1563 313.5781 moveto +28822.625 319.8906 moveto +P$q +28824.25 314.9375 moveto +P$r +28833.8125 314.9063 moveto +P$1 +28833.8125 313.1563 moveto +P$2 +28845.8594 315.4219 moveto +P$7 +28849.8438 311.1719 moveto +P$f +28856.6094 317.5469 moveto +P$5 +28860.3438 316.625 moveto +P$6 +28862.1719 310.3594 moveto +P$o +28865.5 313.3438 moveto +P$h +28883.8125 314.9063 moveto +P$1 +28883.8125 313.1563 moveto +P$2 +28895.8594 315.4219 moveto +P$7 +28897.1719 310.3594 moveto +P$n +28912.1563 313.5781 moveto P$8 -9772.4219 318.3594 moveto +28917.625 319.8906 moveto +P$q +28919.25 314.9375 moveto +P$r +28928.6094 317.5469 moveto +P$5 +28932.3438 316.625 moveto +P$6 +28940.3594 313.5781 moveto +P$0 +28950.8125 317.1563 moveto +P$i +28948.2969 316.3438 moveto +P$j +28953.4219 318.3594 moveto P$4 -9779.625 319.8906 moveto +28960.625 319.8906 moveto P$q -9781.25 314.9375 moveto +28962.25 314.9375 moveto P$r -9790.8125 314.9063 moveto +28971.8125 314.9063 moveto P$1 -9790.8125 313.1563 moveto +28971.8125 313.1563 moveto P$2 -9802.8594 315.4219 moveto +28983.8594 315.4219 moveto P$7 -9806.8438 311.1719 moveto +28987.8438 311.1719 moveto P$f -9810.1719 310.3594 moveto -P$l -9821.8125 317.1563 moveto +28991.1719 310.3594 moveto +P$o +29002.8125 317.1563 moveto +P$i +29000.2969 316.3438 moveto P$j -9819.2969 316.3438 moveto -P$k -9826.8438 311.1719 moveto +29007.8438 311.1719 moveto P$f -9835.3906 314.4688 moveto -P$9 -9833.7656 319.4219 moveto -P$a -9843.6094 317.5469 moveto -P$5 -9847.3438 316.625 moveto -P$6 -9851.8438 311.1719 moveto -P$f -9858.6094 317.5469 moveto -P$5 -9862.3438 316.625 moveto -P$6 -9866.625 319.8906 moveto -P$q -9868.25 314.9375 moveto -P$r -9879.8594 315.4219 moveto -P$7 -9884.8125 314.9063 moveto +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +26121 307 moveto +308 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-319 0 rlineto +0 -100 rlineto +26121 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +26121.5 307.5 moveto +307 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-318 0 rlineto +0 -99 rlineto +26121.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +26122 308 moveto +306 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-317 0 rlineto +0 -98 rlineto +26122 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +26122.5 308.5 moveto +305 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-316 0 rlineto +0 -97 rlineto +26122.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +26123 309 moveto +304 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-315 0 rlineto +0 -96 rlineto +26123 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +26123.5 309.5 moveto +303 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-314 0 rlineto +0 -95 rlineto +26123.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +26124 310 moveto +302 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-313 0 rlineto +0 -94 rlineto +26124 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +26118 304 moveto +308 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-319 0 rlineto +0 -100 rlineto +26118 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +26118 304 moveto +308 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-319 0 rlineto +0 -100 rlineto +26118 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +26118 326.2969 moveto +315 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26128.3594 313.5781 moveto +P$0 +26134.8125 314.9063 moveto P$1 -9884.8125 313.1563 moveto +26134.8125 313.1563 moveto P$2 -9890.2188 313.3438 moveto -P$v -9900.1719 313.3438 moveto +26148.2656 314.6094 moveto +P$3 +26155.4219 318.3594 moveto +P$4 +26163.6094 317.5469 moveto +P$5 +26167.3438 316.625 moveto +P$6 +26174.8594 315.4219 moveto +P$7 +26182.1563 313.5781 moveto +P$8 +26190.3906 314.4688 moveto +P$9 +26188.7656 319.4219 moveto +P$a +26195.1719 313.3438 moveto P$b -9900.1719 310.3594 moveto +26195.1719 310.3594 moveto P$c -9909.3906 314.4688 moveto -P$9 -9907.7656 319.4219 moveto -P$a -9921.8125 317.1563 moveto +26204.3906 319.7031 moveto +P$d +26202.7656 314.9375 moveto +P$e +26209.1719 313.3438 moveto +P$b +26209.1719 310.3594 moveto +P$c +26215.8438 311.1719 moveto +P$f +26222.6094 317.5469 moveto +P$5 +26226.3438 316.625 moveto +P$6 +26228.4219 318.3594 moveto +P$4 +26239.3594 313.5781 moveto +P$0 +26249.2656 314.6094 moveto +P$3 +26262.1563 313.5781 moveto +P$8 +26265.4219 318.3594 moveto +P$4 +26272.625 319.8906 moveto +P$q +26274.25 314.9375 moveto +P$r +26283.8125 314.9063 moveto +P$1 +26283.8125 313.1563 moveto +P$2 +26295.8594 315.4219 moveto +P$7 +26299.8438 311.1719 moveto +P$f +26303.1719 310.3594 moveto +P$o +26314.8125 317.1563 moveto +P$i +26312.2969 316.3438 moveto P$j -9919.2969 316.3438 moveto -P$k -9929.8594 315.4219 moveto +26319.8438 311.1719 moveto +P$f +26328.3906 314.4688 moveto +P$9 +26326.7656 319.4219 moveto +P$a +26336.6094 317.5469 moveto +P$5 +26340.3438 316.625 moveto +P$6 +26344.8438 311.1719 moveto +P$f +26351.6094 317.5469 moveto +P$5 +26355.3438 316.625 moveto +P$6 +26359.625 319.8906 moveto +P$q +26361.25 314.9375 moveto +P$r +26372.8594 315.4219 moveto +P$7 +26377.8125 314.9063 moveto +P$1 +26377.8125 313.1563 moveto +P$2 +26383.2188 313.3438 moveto +P$v +26393.1719 313.3438 moveto +P$b +26393.1719 310.3594 moveto +P$c +26402.3906 314.4688 moveto +P$9 +26400.7656 319.4219 moveto +P$a +26414.8125 317.1563 moveto +P$i +26412.2969 316.3438 moveto +P$j +26422.8594 315.4219 moveto P$7 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -12487 59 moveto +32186 59 moveto 215 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 201.7031 rlineto -342 0 rlineto 0 -224 rlineto -12487 59 lineto +32186 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -12487.5 59.5 moveto +32186.5 59.5 moveto 214 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 200.7031 rlineto -341 0 rlineto 0 -223 rlineto -12487.5 59.5 lineto +32186.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -12488 60 moveto +32187 60 moveto 213 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 199.7031 rlineto -340 0 rlineto 0 -222 rlineto -12488 60 lineto +32187 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -12488.5 60.5 moveto +32187.5 60.5 moveto 212 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 198.7031 rlineto -339 0 rlineto 0 -221 rlineto -12488.5 60.5 lineto +32187.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -12489 61 moveto +32188 61 moveto 211 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 197.7031 rlineto -338 0 rlineto 0 -220 rlineto -12489 61 lineto +32188 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -12489.5 61.5 moveto +32188.5 61.5 moveto 210 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 196.7031 rlineto -337 0 rlineto 0 -219 rlineto -12489.5 61.5 lineto +32188.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -12490 62 moveto +32189 62 moveto 209 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 195.7031 rlineto -336 0 rlineto 0 -218 rlineto -12490 62 lineto +32189 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -12484 56 moveto +32183 56 moveto 215 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 201.7031 rlineto -342 0 rlineto 0 -224 rlineto -12484 56 lineto +32183 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -12484 56 moveto +32183 56 moveto 215 0 rlineto 7 22.2969 rlineto 120 0 rlineto 0 201.7031 rlineto -342 0 rlineto 0 -224 rlineto -12484 56 lineto +32183 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -12484 78.2969 moveto +32183 78.2969 moveto 222 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -12494.3594 65.5781 moveto +32193.3594 65.5781 moveto P$0 -12500.8125 66.9063 moveto +32199.8125 66.9063 moveto P$1 -12500.8125 65.1563 moveto +32199.8125 65.1563 moveto P$2 -12514.2656 66.6094 moveto +32213.2656 66.6094 moveto P$3 -12521.4219 70.3594 moveto +32220.4219 70.3594 moveto P$4 -12529.6094 69.5469 moveto +32228.6094 69.5469 moveto P$5 -12533.3438 68.625 moveto +32232.3438 68.625 moveto P$6 -12540.8594 67.4219 moveto +32239.8594 67.4219 moveto P$7 -12548.1563 65.5781 moveto +32247.1563 65.5781 moveto P$8 -12556.3906 66.4688 moveto +32255.3906 66.4688 moveto P$9 -12554.7656 71.4219 moveto +32253.7656 71.4219 moveto P$a -12561.1719 65.3438 moveto +32260.1719 65.3438 moveto P$b -12561.1719 62.3594 moveto +32260.1719 62.3594 moveto P$c -12570.3906 71.7031 moveto +32269.3906 71.7031 moveto P$d -12568.7656 66.9375 moveto +32267.7656 66.9375 moveto P$e -12575.1719 65.3438 moveto +32274.1719 65.3438 moveto P$b -12575.1719 62.3594 moveto +32274.1719 62.3594 moveto P$c -12581.8438 63.1719 moveto +32280.8438 63.1719 moveto P$f -12588.6094 69.5469 moveto +32287.6094 69.5469 moveto P$5 -12592.3438 68.625 moveto +32291.3438 68.625 moveto P$6 -12594.4219 70.3594 moveto +32293.4219 70.3594 moveto P$4 -12601.625 71.8906 moveto +32300.625 71.8906 moveto P$q -12603.25 66.9375 moveto +32302.25 66.9375 moveto P$r -12614.8594 67.4219 moveto +32313.8594 67.4219 moveto P$7 -12623.8125 69.1563 moveto +32322.8125 69.1563 moveto +P$i +32320.2969 68.3438 moveto P$j -12621.2969 68.3438 moveto -P$k -12631.2188 62.3594 moveto +32330.2188 62.3594 moveto P$w -12639.8125 69.1563 moveto +32338.8125 69.1563 moveto +P$i +32336.2969 68.3438 moveto P$j -12637.2969 68.3438 moveto -P$k -12647.8594 67.4219 moveto +32346.8594 67.4219 moveto P$7 -12656.8125 69.1563 moveto +32355.8125 69.1563 moveto +P$i +32353.2969 68.3438 moveto P$j -12654.2969 68.3438 moveto -P$k -12666.875 68.3438 moveto -P$h -12675.3594 65.5781 moveto +32365.875 68.3438 moveto +P$g +32374.3594 65.5781 moveto P$0 -12685.8125 69.1563 moveto +32384.8125 69.1563 moveto +P$i +32382.2969 68.3438 moveto P$j -12683.2969 68.3438 moveto -P$k -12694.1563 65.5781 moveto +32393.1563 65.5781 moveto P$8 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -12853 59 moveto +32552 59 moveto 178 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -189 0 rlineto 0 -100 rlineto -12853 59 lineto +32552 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -12853.5 59.5 moveto +32552.5 59.5 moveto 177 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -188 0 rlineto 0 -99 rlineto -12853.5 59.5 lineto +32552.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -12854 60 moveto +32553 60 moveto 176 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -187 0 rlineto 0 -98 rlineto -12854 60 lineto +32553 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -12854.5 60.5 moveto +32553.5 60.5 moveto 175 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -186 0 rlineto 0 -97 rlineto -12854.5 60.5 lineto +32553.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -12855 61 moveto +32554 61 moveto 174 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -185 0 rlineto 0 -96 rlineto -12855 61 lineto +32554 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -12855.5 61.5 moveto +32554.5 61.5 moveto 173 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -184 0 rlineto 0 -95 rlineto -12855.5 61.5 lineto +32554.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -12856 62 moveto +32555 62 moveto 172 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -183 0 rlineto 0 -94 rlineto -12856 62 lineto +32555 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -12850 56 moveto +32549 56 moveto 178 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -189 0 rlineto 0 -100 rlineto -12850 56 lineto +32549 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -12850 56 moveto +32549 56 moveto 178 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -189 0 rlineto 0 -100 rlineto -12850 56 lineto +32549 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -12850 78.2969 moveto +32549 78.2969 moveto 185 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -12860.3594 65.5781 moveto +32559.3594 65.5781 moveto P$0 -12866.8125 66.9063 moveto +32565.8125 66.9063 moveto P$1 -12866.8125 65.1563 moveto +32565.8125 65.1563 moveto P$2 -12880.2656 66.6094 moveto +32579.2656 66.6094 moveto P$3 -12887.4219 70.3594 moveto +32586.4219 70.3594 moveto P$4 -12895.6094 69.5469 moveto +32594.6094 69.5469 moveto P$5 -12899.3438 68.625 moveto +32598.3438 68.625 moveto P$6 -12906.8594 67.4219 moveto +32605.8594 67.4219 moveto P$7 -12914.1563 65.5781 moveto +32613.1563 65.5781 moveto P$8 -12922.3906 66.4688 moveto +32621.3906 66.4688 moveto P$9 -12920.7656 71.4219 moveto +32619.7656 71.4219 moveto P$a -12927.1719 65.3438 moveto +32626.1719 65.3438 moveto P$b -12927.1719 62.3594 moveto +32626.1719 62.3594 moveto P$c -12936.3906 71.7031 moveto +32635.3906 71.7031 moveto P$d -12934.7656 66.9375 moveto +32633.7656 66.9375 moveto P$e -12941.1719 65.3438 moveto +32640.1719 65.3438 moveto P$b -12941.1719 62.3594 moveto +32640.1719 62.3594 moveto P$c -12947.8438 63.1719 moveto +32646.8438 63.1719 moveto P$f -12954.6094 69.5469 moveto +32653.6094 69.5469 moveto P$5 -12958.3438 68.625 moveto +32657.3438 68.625 moveto P$6 -12960.4219 70.3594 moveto +32659.4219 70.3594 moveto P$4 -12970.8594 67.4219 moveto +32669.8594 67.4219 moveto P$7 -12972.0938 70.0156 moveto +32671.0938 70.0156 moveto +P$m +32688.875 68.3438 moveto P$g -12989.875 68.3438 moveto -P$h -12994.8438 63.1719 moveto +32693.8438 63.1719 moveto P$f -12998.1719 65.3438 moveto +32697.1719 65.3438 moveto P$b -12998.1719 62.3594 moveto +32697.1719 62.3594 moveto P$c -13009.2656 66.6094 moveto +32708.2656 66.6094 moveto P$3 -13023.8125 69.1563 moveto +32722.8125 69.1563 moveto +P$i +32720.2969 68.3438 moveto P$j -13021.2969 68.3438 moveto -P$k fill 0.7843 0.7843 0.7843 setrgbcolor newpath -13066 59 moveto +32765 59 moveto 229 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -240 0 rlineto 0 -100 rlineto -13066 59 lineto +32765 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -13066.5 59.5 moveto +32765.5 59.5 moveto 228 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -239 0 rlineto 0 -99 rlineto -13066.5 59.5 lineto +32765.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -13067 60 moveto +32766 60 moveto 227 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -238 0 rlineto 0 -98 rlineto -13067 60 lineto +32766 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -13067.5 60.5 moveto +32766.5 60.5 moveto 226 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -237 0 rlineto 0 -97 rlineto -13067.5 60.5 lineto +32766.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -13068 61 moveto +32767 61 moveto 225 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -236 0 rlineto 0 -96 rlineto -13068 61 lineto +32767 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -13068.5 61.5 moveto +32767.5 61.5 moveto 224 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -235 0 rlineto 0 -95 rlineto -13068.5 61.5 lineto +32767.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -13069 62 moveto +32768 62 moveto 223 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -234 0 rlineto 0 -94 rlineto -13069 62 lineto +32768 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -13063 56 moveto +32762 56 moveto 229 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -240 0 rlineto 0 -100 rlineto -13063 56 lineto +32762 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -13063 56 moveto +32762 56 moveto 229 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -240 0 rlineto 0 -100 rlineto -13063 56 lineto +32762 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -13063 78.2969 moveto +32762 78.2969 moveto 236 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -13073.3594 65.5781 moveto +32772.3594 65.5781 moveto P$0 -13079.8125 66.9063 moveto +32778.8125 66.9063 moveto P$1 -13079.8125 65.1563 moveto +32778.8125 65.1563 moveto P$2 -13093.2656 66.6094 moveto +32792.2656 66.6094 moveto P$3 -13100.4219 70.3594 moveto +32799.4219 70.3594 moveto P$4 -13108.6094 69.5469 moveto +32807.6094 69.5469 moveto P$5 -13112.3438 68.625 moveto +32811.3438 68.625 moveto P$6 -13119.8594 67.4219 moveto +32818.8594 67.4219 moveto P$7 -13127.1563 65.5781 moveto +32826.1563 65.5781 moveto P$8 -13135.3906 66.4688 moveto +32834.3906 66.4688 moveto P$9 -13133.7656 71.4219 moveto +32832.7656 71.4219 moveto P$a -13140.1719 65.3438 moveto +32839.1719 65.3438 moveto P$b -13140.1719 62.3594 moveto +32839.1719 62.3594 moveto P$c -13149.3906 71.7031 moveto +32848.3906 71.7031 moveto P$d -13147.7656 66.9375 moveto +32846.7656 66.9375 moveto P$e -13154.1719 65.3438 moveto +32853.1719 65.3438 moveto P$b -13154.1719 62.3594 moveto +32853.1719 62.3594 moveto P$c -13160.8438 63.1719 moveto +32859.8438 63.1719 moveto P$f -13167.6094 69.5469 moveto +32866.6094 69.5469 moveto P$5 -13171.3438 68.625 moveto +32870.3438 68.625 moveto P$6 -13173.4219 70.3594 moveto +32872.4219 70.3594 moveto P$4 -13184.1563 65.5781 moveto +32883.1563 65.5781 moveto P$8 -13194.8125 69.1563 moveto +32893.8125 69.1563 moveto +P$i +32891.2969 68.3438 moveto P$j -13192.2969 68.3438 moveto -P$k -13200.6094 69.5469 moveto +32899.6094 69.5469 moveto P$5 -13204.3438 68.625 moveto +32903.3438 68.625 moveto P$6 -13211.8594 67.4219 moveto +32910.8594 67.4219 moveto P$7 -13219.3594 65.5781 moveto +32918.3594 65.5781 moveto P$0 -13229.875 68.3438 moveto +32928.875 68.3438 moveto P$u -13232.4219 70.3594 moveto +32931.4219 70.3594 moveto P$4 -13237.1719 62.3594 moveto -P$l -13241.0938 70.0156 moveto -P$g -13257.3594 65.5781 moveto +32936.1719 62.3594 moveto +P$o +32940.0938 70.0156 moveto +P$m +32956.3594 65.5781 moveto P$0 -13267.8125 69.1563 moveto +32966.8125 69.1563 moveto +P$i +32964.2969 68.3438 moveto P$j -13265.2969 68.3438 moveto -P$k -13277.875 68.3438 moveto -P$h -13287.8125 69.1563 moveto +32976.875 68.3438 moveto +P$g +32986.8125 69.1563 moveto +P$i +32984.2969 68.3438 moveto P$j -13285.2969 68.3438 moveto -P$k fill 0.7843 0.7843 0.7843 setrgbcolor newpath -13330 59 moveto +33029 59 moveto 260 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -271 0 rlineto 0 -100 rlineto -13330 59 lineto +33029 59 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -13330.5 59.5 moveto +33029.5 59.5 moveto 259 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -270 0 rlineto 0 -99 rlineto -13330.5 59.5 lineto +33029.5 59.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -13331 60 moveto +33030 60 moveto 258 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -269 0 rlineto 0 -98 rlineto -13331 60 lineto +33030 60 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -13331.5 60.5 moveto +33030.5 60.5 moveto 257 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -268 0 rlineto 0 -97 rlineto -13331.5 60.5 lineto +33030.5 60.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -13332 61 moveto +33031 61 moveto 256 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -267 0 rlineto 0 -96 rlineto -13332 61 lineto +33031 61 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -13332.5 61.5 moveto +33031.5 61.5 moveto 255 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -266 0 rlineto 0 -95 rlineto -13332.5 61.5 lineto +33031.5 61.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -13333 62 moveto +33032 62 moveto 254 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -265 0 rlineto 0 -94 rlineto -13333 62 lineto +33032 62 lineto closepath eofill 1 1 1 setrgbcolor newpath -13327 56 moveto +33026 56 moveto 260 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -271 0 rlineto 0 -100 rlineto -13327 56 lineto +33026 56 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -13327 56 moveto +33026 56 moveto 260 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -271 0 rlineto 0 -100 rlineto -13327 56 lineto +33026 56 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -13327 78.2969 moveto +33026 78.2969 moveto 267 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -13337.3594 65.5781 moveto +33036.3594 65.5781 moveto P$0 -13343.8125 66.9063 moveto +33042.8125 66.9063 moveto P$1 -13343.8125 65.1563 moveto +33042.8125 65.1563 moveto P$2 -13357.2656 66.6094 moveto +33056.2656 66.6094 moveto P$3 -13364.4219 70.3594 moveto +33063.4219 70.3594 moveto P$4 -13372.6094 69.5469 moveto +33071.6094 69.5469 moveto P$5 -13376.3438 68.625 moveto +33075.3438 68.625 moveto P$6 -13383.8594 67.4219 moveto +33082.8594 67.4219 moveto P$7 -13391.1563 65.5781 moveto +33090.1563 65.5781 moveto P$8 -13399.3906 66.4688 moveto +33098.3906 66.4688 moveto P$9 -13397.7656 71.4219 moveto +33096.7656 71.4219 moveto P$a -13404.1719 65.3438 moveto +33103.1719 65.3438 moveto P$b -13404.1719 62.3594 moveto +33103.1719 62.3594 moveto P$c -13413.3906 71.7031 moveto +33112.3906 71.7031 moveto P$d -13411.7656 66.9375 moveto +33110.7656 66.9375 moveto P$e -13418.1719 65.3438 moveto +33117.1719 65.3438 moveto P$b -13418.1719 62.3594 moveto +33117.1719 62.3594 moveto P$c -13424.8438 63.1719 moveto +33123.8438 63.1719 moveto P$f -13431.6094 69.5469 moveto +33130.6094 69.5469 moveto P$5 -13435.3438 68.625 moveto +33134.3438 68.625 moveto P$6 -13437.4219 70.3594 moveto +33136.4219 70.3594 moveto P$4 -13448.1563 65.5781 moveto +33147.1563 65.5781 moveto P$8 -13458.8125 69.1563 moveto +33157.8125 69.1563 moveto +P$i +33155.2969 68.3438 moveto P$j -13456.2969 68.3438 moveto -P$k -13464.6094 69.5469 moveto +33163.6094 69.5469 moveto P$5 -13468.3438 68.625 moveto +33167.3438 68.625 moveto P$6 -13475.8594 67.4219 moveto +33174.8594 67.4219 moveto P$7 -13483.3594 65.5781 moveto +33182.3594 65.5781 moveto P$0 -13493.875 68.3438 moveto +33192.875 68.3438 moveto P$u -13496.4219 70.3594 moveto +33195.4219 70.3594 moveto P$4 -13501.1719 65.3438 moveto +33200.1719 65.3438 moveto P$b -13501.1719 62.3594 moveto +33200.1719 62.3594 moveto P$c -13512.875 68.3438 moveto -P$h -13517.8438 63.1719 moveto +33211.875 68.3438 moveto +P$g +33216.8438 63.1719 moveto P$f -13528.8125 69.1563 moveto +33227.8125 69.1563 moveto +P$i +33225.2969 68.3438 moveto P$j -13526.2969 68.3438 moveto -P$k -13536.8594 67.4219 moveto +33235.8594 67.4219 moveto P$7 -13545.2656 66.6094 moveto +33244.2656 66.6094 moveto P$3 -13559.8125 69.1563 moveto +33258.8125 69.1563 moveto +P$i +33256.2969 68.3438 moveto P$j -13557.2969 68.3438 moveto -P$k -13567.3906 66.4688 moveto +33266.3906 66.4688 moveto P$9 -13565.7656 71.4219 moveto +33264.7656 71.4219 moveto P$a -13572.1719 65.3438 moveto +33271.1719 65.3438 moveto P$b -13572.1719 62.3594 moveto +33271.1719 62.3594 moveto P$c -13579.6094 69.5469 moveto +33278.6094 69.5469 moveto P$5 -13583.3438 68.625 moveto +33282.3438 68.625 moveto P$6 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -9971 307 moveto +26464 307 moveto 179 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -190 0 rlineto 0 -100 rlineto -9971 307 lineto +26464 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -9971.5 307.5 moveto +26464.5 307.5 moveto 178 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -189 0 rlineto 0 -99 rlineto -9971.5 307.5 lineto +26464.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -9972 308 moveto +26465 308 moveto 177 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -188 0 rlineto 0 -98 rlineto -9972 308 lineto +26465 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -9972.5 308.5 moveto +26465.5 308.5 moveto 176 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -187 0 rlineto 0 -97 rlineto -9972.5 308.5 lineto +26465.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -9973 309 moveto +26466 309 moveto 175 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -186 0 rlineto 0 -96 rlineto -9973 309 lineto +26466 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -9973.5 309.5 moveto +26466.5 309.5 moveto 174 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -185 0 rlineto 0 -95 rlineto -9973.5 309.5 lineto +26466.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -9974 310 moveto +26467 310 moveto 173 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -184 0 rlineto 0 -94 rlineto -9974 310 lineto +26467 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -9968 304 moveto +26461 304 moveto 179 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -190 0 rlineto 0 -100 rlineto -9968 304 lineto +26461 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -9968 304 moveto +26461 304 moveto 179 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -190 0 rlineto 0 -100 rlineto -9968 304 lineto +26461 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -9968 326.2969 moveto +26461 326.2969 moveto 186 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -9978.3594 313.5781 moveto +26471.3594 313.5781 moveto P$0 -9984.8125 314.9063 moveto +26477.8125 314.9063 moveto P$1 -9984.8125 313.1563 moveto +26477.8125 313.1563 moveto P$2 -9998.2656 314.6094 moveto +26491.2656 314.6094 moveto P$3 -10005.4219 318.3594 moveto +26498.4219 318.3594 moveto P$4 -10013.6094 317.5469 moveto +26506.6094 317.5469 moveto P$5 -10017.3438 316.625 moveto +26510.3438 316.625 moveto P$6 -10024.8594 315.4219 moveto +26517.8594 315.4219 moveto P$7 -10032.1563 313.5781 moveto +26525.1563 313.5781 moveto P$8 -10040.3906 314.4688 moveto +26533.3906 314.4688 moveto P$9 -10038.7656 319.4219 moveto +26531.7656 319.4219 moveto P$a -10045.1719 313.3438 moveto +26538.1719 313.3438 moveto P$b -10045.1719 310.3594 moveto +26538.1719 310.3594 moveto P$c -10054.3906 319.7031 moveto +26547.3906 319.7031 moveto P$d -10052.7656 314.9375 moveto +26545.7656 314.9375 moveto P$e -10059.1719 313.3438 moveto +26552.1719 313.3438 moveto P$b -10059.1719 310.3594 moveto +26552.1719 310.3594 moveto P$c -10065.8438 311.1719 moveto +26558.8438 311.1719 moveto P$f -10072.6094 317.5469 moveto +26565.6094 317.5469 moveto P$5 -10076.3438 316.625 moveto +26569.3438 316.625 moveto P$6 -10078.4219 318.3594 moveto +26571.4219 318.3594 moveto P$4 -10083.0938 318.0156 moveto -P$g -10093.1719 313.3438 moveto +26576.0938 318.0156 moveto +P$m +26586.1719 313.3438 moveto P$b -10093.1719 310.3594 moveto +26586.1719 310.3594 moveto P$c -10097.4219 318.3594 moveto +26590.4219 318.3594 moveto P$4 -10102.2813 310.7969 moveto -P$10 -10114.8125 314.9063 moveto +26595.2813 310.7969 moveto +P$12 +26607.8125 314.9063 moveto P$1 -10114.8125 313.1563 moveto +26607.8125 313.1563 moveto P$2 -10126.3906 319.7031 moveto +26619.3906 319.7031 moveto P$d -10124.7656 314.9375 moveto +26617.7656 314.9375 moveto P$e -10131.1719 313.3438 moveto +26624.1719 313.3438 moveto P$b -10131.1719 310.3594 moveto +26624.1719 310.3594 moveto P$c -10142.875 316.3438 moveto -P$h +26635.875 316.3438 moveto +P$g fill 0.7843 0.7843 0.7843 setrgbcolor newpath -10185 307 moveto +26678 307 moveto 183 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -194 0 rlineto 0 -100 rlineto -10185 307 lineto +26678 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -10185.5 307.5 moveto +26678.5 307.5 moveto 182 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -193 0 rlineto 0 -99 rlineto -10185.5 307.5 lineto +26678.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -10186 308 moveto +26679 308 moveto 181 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -192 0 rlineto 0 -98 rlineto -10186 308 lineto +26679 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -10186.5 308.5 moveto +26679.5 308.5 moveto 180 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -191 0 rlineto 0 -97 rlineto -10186.5 308.5 lineto +26679.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -10187 309 moveto +26680 309 moveto 179 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -190 0 rlineto 0 -96 rlineto -10187 309 lineto +26680 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -10187.5 309.5 moveto +26680.5 309.5 moveto 178 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -189 0 rlineto 0 -95 rlineto -10187.5 309.5 lineto +26680.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -10188 310 moveto +26681 310 moveto 177 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -188 0 rlineto 0 -94 rlineto -10188 310 lineto +26681 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -10182 304 moveto +26675 304 moveto 183 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -194 0 rlineto 0 -100 rlineto -10182 304 lineto +26675 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -10182 304 moveto +26675 304 moveto 183 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -194 0 rlineto 0 -100 rlineto -10182 304 lineto +26675 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -10182 326.2969 moveto +26675 326.2969 moveto 190 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -10192.3594 313.5781 moveto +26685.3594 313.5781 moveto P$0 -10198.8125 314.9063 moveto +26691.8125 314.9063 moveto P$1 -10198.8125 313.1563 moveto +26691.8125 313.1563 moveto P$2 -10212.2656 314.6094 moveto +26705.2656 314.6094 moveto P$3 -10219.4219 318.3594 moveto +26712.4219 318.3594 moveto P$4 -10227.6094 317.5469 moveto +26720.6094 317.5469 moveto P$5 -10231.3438 316.625 moveto +26724.3438 316.625 moveto P$6 -10238.8594 315.4219 moveto +26731.8594 315.4219 moveto P$7 -10246.1563 313.5781 moveto +26739.1563 313.5781 moveto P$8 -10254.3906 314.4688 moveto +26747.3906 314.4688 moveto P$9 -10252.7656 319.4219 moveto +26745.7656 319.4219 moveto P$a -10259.1719 313.3438 moveto +26752.1719 313.3438 moveto P$b -10259.1719 310.3594 moveto +26752.1719 310.3594 moveto P$c -10268.3906 319.7031 moveto +26761.3906 319.7031 moveto P$d -10266.7656 314.9375 moveto +26759.7656 314.9375 moveto P$e -10273.1719 313.3438 moveto +26766.1719 313.3438 moveto P$b -10273.1719 310.3594 moveto +26766.1719 310.3594 moveto P$c -10279.8438 311.1719 moveto +26772.8438 311.1719 moveto P$f -10286.6094 317.5469 moveto +26779.6094 317.5469 moveto P$5 -10290.3438 316.625 moveto +26783.3438 316.625 moveto P$6 -10292.4219 318.3594 moveto +26785.4219 318.3594 moveto P$4 -10297.0938 318.0156 moveto -P$g -10307.1719 313.3438 moveto +26790.0938 318.0156 moveto +P$m +26800.1719 313.3438 moveto P$b -10307.1719 310.3594 moveto +26800.1719 310.3594 moveto P$c -10311.4219 318.3594 moveto +26804.4219 318.3594 moveto P$4 -10319.6094 317.5469 moveto +26812.6094 317.5469 moveto P$5 -10323.3438 316.625 moveto +26816.3438 316.625 moveto P$6 -10330.3906 314.4688 moveto +26823.3906 314.4688 moveto P$9 -10328.7656 319.4219 moveto +26821.7656 319.4219 moveto P$a -10342.2656 314.6094 moveto +26835.2656 314.6094 moveto P$3 -10349.1719 313.3438 moveto +26842.1719 313.3438 moveto P$b -10349.1719 310.3594 moveto +26842.1719 310.3594 moveto P$c -10360.875 316.3438 moveto -P$h +26853.875 316.3438 moveto +P$g fill 0.7843 0.7843 0.7843 setrgbcolor newpath -10403 307 moveto +26896 307 moveto 232 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -243 0 rlineto 0 -100 rlineto -10403 307 lineto +26896 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -10403.5 307.5 moveto +26896.5 307.5 moveto 231 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -242 0 rlineto 0 -99 rlineto -10403.5 307.5 lineto +26896.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -10404 308 moveto +26897 308 moveto 230 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -241 0 rlineto 0 -98 rlineto -10404 308 lineto +26897 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -10404.5 308.5 moveto +26897.5 308.5 moveto 229 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -240 0 rlineto 0 -97 rlineto -10404.5 308.5 lineto +26897.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -10405 309 moveto +26898 309 moveto 228 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -239 0 rlineto 0 -96 rlineto -10405 309 lineto +26898 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -10405.5 309.5 moveto +26898.5 309.5 moveto 227 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -238 0 rlineto 0 -95 rlineto -10405.5 309.5 lineto +26898.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -10406 310 moveto +26899 310 moveto 226 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -237 0 rlineto 0 -94 rlineto -10406 310 lineto +26899 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -10400 304 moveto +26893 304 moveto 232 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -243 0 rlineto 0 -100 rlineto -10400 304 lineto +26893 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -10400 304 moveto +26893 304 moveto 232 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -243 0 rlineto 0 -100 rlineto -10400 304 lineto +26893 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -10400 326.2969 moveto +26893 326.2969 moveto 239 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -10410.3594 313.5781 moveto +26903.3594 313.5781 moveto P$0 -10416.8125 314.9063 moveto +26909.8125 314.9063 moveto P$1 -10416.8125 313.1563 moveto +26909.8125 313.1563 moveto P$2 -10430.2656 314.6094 moveto +26923.2656 314.6094 moveto P$3 -10437.4219 318.3594 moveto +26930.4219 318.3594 moveto P$4 -10445.6094 317.5469 moveto +26938.6094 317.5469 moveto P$5 -10449.3438 316.625 moveto +26942.3438 316.625 moveto P$6 -10456.8594 315.4219 moveto +26949.8594 315.4219 moveto P$7 -10464.1563 313.5781 moveto +26957.1563 313.5781 moveto P$8 -10472.3906 314.4688 moveto +26965.3906 314.4688 moveto P$9 -10470.7656 319.4219 moveto +26963.7656 319.4219 moveto P$a -10477.1719 313.3438 moveto +26970.1719 313.3438 moveto P$b -10477.1719 310.3594 moveto +26970.1719 310.3594 moveto P$c -10486.3906 319.7031 moveto +26979.3906 319.7031 moveto P$d -10484.7656 314.9375 moveto +26977.7656 314.9375 moveto P$e -10491.1719 313.3438 moveto +26984.1719 313.3438 moveto P$b -10491.1719 310.3594 moveto +26984.1719 310.3594 moveto P$c -10497.8438 311.1719 moveto +26990.8438 311.1719 moveto P$f -10504.6094 317.5469 moveto +26997.6094 317.5469 moveto P$5 -10508.3438 316.625 moveto +27001.3438 316.625 moveto P$6 -10510.4219 318.3594 moveto +27003.4219 318.3594 moveto P$4 -10515.0938 318.0156 moveto -P$g -10525.1719 313.3438 moveto +27008.0938 318.0156 moveto +P$m +27018.1719 313.3438 moveto P$b -10525.1719 310.3594 moveto +27018.1719 310.3594 moveto P$c -10529.4219 318.3594 moveto +27022.4219 318.3594 moveto P$4 -10536.625 319.8906 moveto +27029.625 319.8906 moveto P$q -10538.25 314.9375 moveto +27031.25 314.9375 moveto P$r -10551.8125 317.1563 moveto +27044.8125 317.1563 moveto +P$i +27042.2969 316.3438 moveto P$j -10549.2969 316.3438 moveto -P$k -10559.8594 315.4219 moveto +27052.8594 315.4219 moveto P$7 -10568.2656 314.6094 moveto +27061.2656 314.6094 moveto P$3 -10575.1719 313.3438 moveto +27068.1719 313.3438 moveto P$b -10575.1719 310.3594 moveto +27068.1719 310.3594 moveto P$c -10585.1563 313.5781 moveto +27078.1563 313.5781 moveto P$8 -10594.1563 313.5781 moveto +27087.1563 313.5781 moveto P$8 -10597.1719 313.3438 moveto +27090.1719 313.3438 moveto P$b -10597.1719 310.3594 moveto +27090.1719 310.3594 moveto P$c -10604.8125 314.9063 moveto +27097.8125 314.9063 moveto P$1 -10604.8125 313.1563 moveto +27097.8125 313.1563 moveto P$2 -10618.875 316.3438 moveto -P$h -10627.1563 313.5781 moveto +27111.875 316.3438 moveto +P$g +27120.1563 313.5781 moveto P$8 fill 0.7843 0.7843 0.7843 setrgbcolor newpath -10670 307 moveto +27163 307 moveto 242 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -253 0 rlineto 0 -100 rlineto -10670 307 lineto +27163 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -10670.5 307.5 moveto +27163.5 307.5 moveto 241 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 76.7031 rlineto -252 0 rlineto 0 -99 rlineto -10670.5 307.5 lineto +27163.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -10671 308 moveto +27164 308 moveto 240 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 75.7031 rlineto -251 0 rlineto 0 -98 rlineto -10671 308 lineto +27164 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -10671.5 308.5 moveto +27164.5 308.5 moveto 239 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 74.7031 rlineto -250 0 rlineto 0 -97 rlineto -10671.5 308.5 lineto +27164.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -10672 309 moveto +27165 309 moveto 238 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 73.7031 rlineto -249 0 rlineto 0 -96 rlineto -10672 309 lineto +27165 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -10672.5 309.5 moveto +27165.5 309.5 moveto 237 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 72.7031 rlineto -248 0 rlineto 0 -95 rlineto -10672.5 309.5 lineto +27165.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -10673 310 moveto +27166 310 moveto 236 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 71.7031 rlineto -247 0 rlineto 0 -94 rlineto -10673 310 lineto +27166 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -10667 304 moveto +27160 304 moveto 242 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -253 0 rlineto 0 -100 rlineto -10667 304 lineto +27160 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -10667 304 moveto +27160 304 moveto 242 0 rlineto 7 22.2969 rlineto 4 0 rlineto 0 77.7031 rlineto -253 0 rlineto 0 -100 rlineto -10667 304 lineto +27160 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -10667 326.2969 moveto +27160 326.2969 moveto 249 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -10677.3594 313.5781 moveto +27170.3594 313.5781 moveto P$0 -10683.8125 314.9063 moveto +27176.8125 314.9063 moveto P$1 -10683.8125 313.1563 moveto +27176.8125 313.1563 moveto P$2 -10697.2656 314.6094 moveto +27190.2656 314.6094 moveto P$3 -10704.4219 318.3594 moveto +27197.4219 318.3594 moveto P$4 -10712.6094 317.5469 moveto +27205.6094 317.5469 moveto P$5 -10716.3438 316.625 moveto +27209.3438 316.625 moveto P$6 -10723.8594 315.4219 moveto +27216.8594 315.4219 moveto P$7 -10731.1563 313.5781 moveto +27224.1563 313.5781 moveto P$8 -10739.3906 314.4688 moveto +27232.3906 314.4688 moveto P$9 -10737.7656 319.4219 moveto +27230.7656 319.4219 moveto P$a -10744.1719 313.3438 moveto +27237.1719 313.3438 moveto P$b -10744.1719 310.3594 moveto +27237.1719 310.3594 moveto P$c -10753.3906 319.7031 moveto +27246.3906 319.7031 moveto P$d -10751.7656 314.9375 moveto +27244.7656 314.9375 moveto P$e -10758.1719 313.3438 moveto +27251.1719 313.3438 moveto P$b -10758.1719 310.3594 moveto +27251.1719 310.3594 moveto P$c -10764.8438 311.1719 moveto +27257.8438 311.1719 moveto P$f -10771.6094 317.5469 moveto +27264.6094 317.5469 moveto P$5 -10775.3438 316.625 moveto +27268.3438 316.625 moveto P$6 -10777.4219 318.3594 moveto +27270.4219 318.3594 moveto P$4 -10781.5 313.3438 moveto -P$n -10803.8125 317.1563 moveto +27274.5 313.3438 moveto +P$h +27296.8125 317.1563 moveto +P$i +27294.2969 316.3438 moveto P$j -10801.2969 316.3438 moveto +27303.25 319.4219 moveto P$k -10810.25 319.4219 moveto -P$o -10808.625 314.4688 moveto -P$p -10821.3906 314.4688 moveto +27301.625 314.4688 moveto +P$l +27314.3906 314.4688 moveto P$9 -10819.7656 319.4219 moveto +27312.7656 319.4219 moveto P$a -10833.8125 317.1563 moveto +27326.8125 317.1563 moveto +P$i +27324.2969 316.3438 moveto P$j -10831.2969 316.3438 moveto -P$k -10835.2188 313.3438 moveto +27328.2188 313.3438 moveto P$v -10851.1563 313.5781 moveto +27344.1563 313.5781 moveto P$8 -10854.0938 318.0156 moveto -P$g -10866.625 319.8906 moveto +27347.0938 318.0156 moveto +P$m +27359.625 319.8906 moveto P$q -10868.25 314.9375 moveto +27361.25 314.9375 moveto P$r -10876.625 319.8906 moveto +27369.625 319.8906 moveto P$q -10878.25 314.9375 moveto +27371.25 314.9375 moveto P$r -10887.8125 314.9063 moveto +27380.8125 314.9063 moveto P$1 -10887.8125 313.1563 moveto +27380.8125 313.1563 moveto P$2 -10899.8594 315.4219 moveto +27392.8594 315.4219 moveto P$7 -10903.8438 311.1719 moveto +27396.8438 311.1719 moveto P$f fill 0.7843 0.7843 0.7843 setrgbcolor newpath -1647 307 moveto +20753 307 moveto 204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 201.7031 rlineto --367 0 rlineto -0 -224 rlineto -1647 307 lineto +1378 0 rlineto +0 449.7031 rlineto +-1589 0 rlineto +0 -472 rlineto +20753 307 lineto closepath eofill 0.6863 0.6863 0.6863 setrgbcolor newpath -1647.5 307.5 moveto -203 0 rlineto +20753.5 307.5 moveto +204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 200.7031 rlineto --366 0 rlineto -0 -223 rlineto -1647.5 307.5 lineto +1377 0 rlineto +0 448.7031 rlineto +-1588 0 rlineto +0 -471 rlineto +20753.5 307.5 lineto closepath eofill 0.5882 0.5882 0.5882 setrgbcolor newpath -1648 308 moveto -202 0 rlineto +20754 308 moveto +204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 199.7031 rlineto --365 0 rlineto -0 -222 rlineto -1648 308 lineto +1376 0 rlineto +0 447.7031 rlineto +-1587 0 rlineto +0 -470 rlineto +20754 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor newpath -1648.5 308.5 moveto -201 0 rlineto +20754.5 308.5 moveto +204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 198.7031 rlineto --364 0 rlineto -0 -221 rlineto -1648.5 308.5 lineto +1375 0 rlineto +0 446.7031 rlineto +-1586 0 rlineto +0 -469 rlineto +20754.5 308.5 lineto closepath eofill 0.3922 0.3922 0.3922 setrgbcolor newpath -1649 309 moveto -200 0 rlineto +20755 309 moveto +204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 197.7031 rlineto --363 0 rlineto -0 -220 rlineto -1649 309 lineto +1374 0 rlineto +0 445.7031 rlineto +-1585 0 rlineto +0 -468 rlineto +20755 309 lineto closepath eofill 0.2941 0.2941 0.2941 setrgbcolor newpath -1649.5 309.5 moveto -199 0 rlineto +20755.5 309.5 moveto +204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 196.7031 rlineto --362 0 rlineto -0 -219 rlineto -1649.5 309.5 lineto +1373 0 rlineto +0 444.7031 rlineto +-1584 0 rlineto +0 -467 rlineto +20755.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor newpath -1650 310 moveto -198 0 rlineto +20756 310 moveto +204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 195.7031 rlineto --361 0 rlineto -0 -218 rlineto -1650 310 lineto +1372 0 rlineto +0 443.7031 rlineto +-1583 0 rlineto +0 -466 rlineto +20756 310 lineto closepath eofill 1 1 1 setrgbcolor newpath -1644 304 moveto +20750 304 moveto 204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 201.7031 rlineto --367 0 rlineto -0 -224 rlineto -1644 304 lineto +1378 0 rlineto +0 449.7031 rlineto +-1589 0 rlineto +0 -472 rlineto +20750 304 lineto closepath eofill 2.0 setlinewidth 0 0 0 setrgbcolor newpath -1644 304 moveto +20750 304 moveto 204 0 rlineto 7 22.2969 rlineto -156 0 rlineto -0 201.7031 rlineto --367 0 rlineto -0 -224 rlineto -1644 304 lineto +1378 0 rlineto +0 449.7031 rlineto +-1589 0 rlineto +0 -472 rlineto +20750 304 lineto closepath stroke 2.0 setlinewidth 0 0 0 setrgbcolor newpath -1644 326.2969 moveto +20750 326.2969 moveto 211 0 rlineto closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1654.3594 313.5781 moveto +20760.3594 313.5781 moveto P$0 -1660.8125 314.9063 moveto +20766.8125 314.9063 moveto P$1 -1660.8125 313.1563 moveto +20766.8125 313.1563 moveto P$2 -1674.2656 314.6094 moveto +20780.2656 314.6094 moveto P$3 -1681.4219 318.3594 moveto +20787.4219 318.3594 moveto P$4 -1689.6094 317.5469 moveto +20795.6094 317.5469 moveto P$5 -1693.3438 316.625 moveto +20799.3438 316.625 moveto P$6 -1700.8594 315.4219 moveto +20806.8594 315.4219 moveto P$7 -1708.1563 313.5781 moveto +20814.1563 313.5781 moveto P$8 -1716.3906 314.4688 moveto +20822.3906 314.4688 moveto P$9 -1714.7656 319.4219 moveto +20820.7656 319.4219 moveto P$a -1721.1719 313.3438 moveto +20827.1719 313.3438 moveto P$b -1721.1719 310.3594 moveto +20827.1719 310.3594 moveto P$c -1730.3906 319.7031 moveto +20836.3906 319.7031 moveto P$d -1728.7656 314.9375 moveto +20834.7656 314.9375 moveto P$e -1735.1719 313.3438 moveto +20841.1719 313.3438 moveto P$b -1735.1719 310.3594 moveto +20841.1719 310.3594 moveto P$c -1741.8438 311.1719 moveto +20847.8438 311.1719 moveto P$f -1748.6094 317.5469 moveto +20854.6094 317.5469 moveto P$5 -1752.3438 316.625 moveto +20858.3438 316.625 moveto P$6 -1754.4219 318.3594 moveto +20860.4219 318.3594 moveto P$4 -1758.5 313.3438 moveto -P$n -1776.8125 314.9063 moveto +20864.5 313.3438 moveto +P$h +20882.8125 314.9063 moveto P$1 -1776.8125 313.1563 moveto +20882.8125 313.1563 moveto P$2 -1788.8594 315.4219 moveto +20894.8594 315.4219 moveto P$7 -1790.1719 310.3594 moveto -P$i -1805.1563 313.5781 moveto +20896.1719 310.3594 moveto +P$n +20911.1563 313.5781 moveto P$8 -1810.625 319.8906 moveto +20916.625 319.8906 moveto P$q -1812.25 314.9375 moveto +20918.25 314.9375 moveto P$r -1821.6094 317.5469 moveto +20927.6094 317.5469 moveto P$5 -1825.3438 316.625 moveto +20931.3438 316.625 moveto P$6 -1833.3594 313.5781 moveto +20939.3594 313.5781 moveto P$0 -1843.8125 317.1563 moveto +20949.8125 317.1563 moveto +P$i +20947.2969 316.3438 moveto P$j -1841.2969 316.3438 moveto -P$k fill 0.7843 0.7843 0.7843 setrgbcolor -123 48 2055.75 344 1 roundrect +newpath +30675 307 moveto +245 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-256 0 rlineto +0 -100 rlineto +30675 307 lineto closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -122 47 2056.25 344.5 1 roundrect +0.6863 0.6863 0.6863 setrgbcolor +newpath +30675.5 307.5 moveto +244 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 76.7031 rlineto +-255 0 rlineto +0 -99 rlineto +30675.5 307.5 lineto closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -121 46 2056.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -120 45 2057.25 345.5 1 roundrect +0.5882 0.5882 0.5882 setrgbcolor +newpath +30676 308 moveto +243 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 75.7031 rlineto +-254 0 rlineto +0 -98 rlineto +30676 308 lineto closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -119 44 2057.75 346 1 roundrect +newpath +30676.5 308.5 moveto +242 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 74.7031 rlineto +-253 0 rlineto +0 -97 rlineto +30676.5 308.5 lineto closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -118 43 2058.25 346.5 1 roundrect +0.3922 0.3922 0.3922 setrgbcolor +newpath +30677 309 moveto +241 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 73.7031 rlineto +-252 0 rlineto +0 -96 rlineto +30677 309 lineto closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -117 42 2058.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -116 41 2059.25 347.5 1 roundrect +0.2941 0.2941 0.2941 setrgbcolor +newpath +30677.5 309.5 moveto +240 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 72.7031 rlineto +-251 0 rlineto +0 -95 rlineto +30677.5 309.5 lineto closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -115 40 2059.75 348 1 roundrect +newpath +30678 310 moveto +239 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 71.7031 rlineto +-250 0 rlineto +0 -94 rlineto +30678 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +30672 304 moveto +245 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-256 0 rlineto +0 -100 rlineto +30672 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +30672 304 moveto +245 0 rlineto +7 22.2969 rlineto +4 0 rlineto +0 77.7031 rlineto +-256 0 rlineto +0 -100 rlineto +30672 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +30672 326.2969 moveto +252 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30682.3594 313.5781 moveto +P$0 +30688.8125 314.9063 moveto +P$1 +30688.8125 313.1563 moveto +P$2 +30702.2656 314.6094 moveto +P$3 +30709.4219 318.3594 moveto +P$4 +30717.6094 317.5469 moveto +P$5 +30721.3438 316.625 moveto +P$6 +30728.8594 315.4219 moveto +P$7 +30736.1563 313.5781 moveto +P$8 +30744.3906 314.4688 moveto +P$9 +30742.7656 319.4219 moveto +P$a +30749.1719 313.3438 moveto +P$b +30749.1719 310.3594 moveto +P$c +30758.3906 319.7031 moveto +P$d +30756.7656 314.9375 moveto +P$e +30763.1719 313.3438 moveto +P$b +30763.1719 310.3594 moveto +P$c +30769.8438 311.1719 moveto +P$f +30776.6094 317.5469 moveto +P$5 +30780.3438 316.625 moveto +P$6 +30782.4219 318.3594 moveto +P$4 +30786.5 313.3438 moveto +P$h +30804.8125 314.9063 moveto +P$1 +30804.8125 313.1563 moveto +P$2 +30816.8594 315.4219 moveto +P$7 +30818.1719 310.3594 moveto +P$n +30833.1563 313.5781 moveto +P$8 +30838.625 319.8906 moveto +P$q +30840.25 314.9375 moveto +P$r +30849.6094 317.5469 moveto +P$5 +30853.3438 316.625 moveto +P$6 +30861.3594 313.5781 moveto +P$0 +30871.8125 317.1563 moveto +P$i +30869.2969 316.3438 moveto +P$j +30874.4219 318.3594 moveto +P$4 +30886.2656 314.6094 moveto +P$3 +30893.1719 313.3438 moveto +P$b +30893.1719 310.3594 moveto +P$c +30903.1563 313.5781 moveto +P$8 +30912.3594 313.5781 moveto +P$0 +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +28516 431 moveto +278 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 77.7031 rlineto +-627 0 rlineto +0 -100 rlineto +28516 431 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +28516.5 431.5 moveto +277 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 76.7031 rlineto +-626 0 rlineto +0 -99 rlineto +28516.5 431.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +28517 432 moveto +276 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 75.7031 rlineto +-625 0 rlineto +0 -98 rlineto +28517 432 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +28517.5 432.5 moveto +275 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 74.7031 rlineto +-624 0 rlineto +0 -97 rlineto +28517.5 432.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +28518 433 moveto +274 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 73.7031 rlineto +-623 0 rlineto +0 -96 rlineto +28518 433 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +28518.5 433.5 moveto +273 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 72.7031 rlineto +-622 0 rlineto +0 -95 rlineto +28518.5 433.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +28519 434 moveto +272 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 71.7031 rlineto +-621 0 rlineto +0 -94 rlineto +28519 434 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +28513 428 moveto +278 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 77.7031 rlineto +-627 0 rlineto +0 -100 rlineto +28513 428 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28513 428 moveto +278 0 rlineto +7 22.2969 rlineto +342 0 rlineto +0 77.7031 rlineto +-627 0 rlineto +0 -100 rlineto +28513 428 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +28513 450.2969 moveto +285 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28523.3594 437.5781 moveto +P$0 +28529.8125 438.9063 moveto +P$1 +28529.8125 437.1563 moveto +P$2 +28543.2656 438.6094 moveto +P$3 +28550.4219 442.3594 moveto +P$4 +28558.6094 441.5469 moveto +P$5 +28562.3438 440.625 moveto +P$6 +28569.8594 439.4219 moveto +P$7 +28577.1563 437.5781 moveto +P$8 +28585.3906 438.4688 moveto +P$9 +28583.7656 443.4219 moveto +P$a +28590.1719 437.3438 moveto +P$b +28590.1719 434.3594 moveto +P$c +28599.3906 443.7031 moveto +P$d +28597.7656 438.9375 moveto +P$e +28604.1719 437.3438 moveto +P$b +28604.1719 434.3594 moveto +P$c +28610.8438 435.1719 moveto +P$f +28617.6094 441.5469 moveto +P$5 +28621.3438 440.625 moveto +P$6 +28623.4219 442.3594 moveto +P$4 +28627.5 437.3438 moveto +P$h +28645.8125 438.9063 moveto +P$1 +28645.8125 437.1563 moveto +P$2 +28657.8594 439.4219 moveto +P$7 +28659.1719 434.3594 moveto +P$n +28674.1563 437.5781 moveto +P$8 +28679.625 443.8906 moveto +P$q +28681.25 438.9375 moveto +P$r +28690.6094 441.5469 moveto +P$5 +28694.3438 440.625 moveto +P$6 +28702.3594 437.5781 moveto +P$0 +28712.8125 441.1563 moveto +P$i +28710.2969 440.3438 moveto +P$j +28715.4219 442.3594 moveto +P$4 +28722.625 443.8906 moveto +P$q +28724.25 438.9375 moveto +P$r +28737.8125 441.1563 moveto +P$i +28735.2969 440.3438 moveto +P$j +28745.8594 439.4219 moveto +P$7 +28753.1563 437.5781 moveto +P$8 +28759.8125 438.9063 moveto +P$1 +28759.8125 437.1563 moveto +P$2 +28773.875 440.3438 moveto +P$g +28779.6094 441.5469 moveto +P$5 +28783.3438 440.625 moveto +P$6 +28785.1719 434.3594 moveto +P$o +fill +0.7843 0.7843 0.7843 setrgbcolor +newpath +27558 307 moveto +223 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 77.7031 rlineto +-489 0 rlineto +0 -100 rlineto +27558 307 lineto +closepath eofill +0.6863 0.6863 0.6863 setrgbcolor +newpath +27558.5 307.5 moveto +222 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 76.7031 rlineto +-488 0 rlineto +0 -99 rlineto +27558.5 307.5 lineto +closepath eofill +0.5882 0.5882 0.5882 setrgbcolor +newpath +27559 308 moveto +221 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 75.7031 rlineto +-487 0 rlineto +0 -98 rlineto +27559 308 lineto +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +newpath +27559.5 308.5 moveto +220 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 74.7031 rlineto +-486 0 rlineto +0 -97 rlineto +27559.5 308.5 lineto +closepath eofill +0.3922 0.3922 0.3922 setrgbcolor +newpath +27560 309 moveto +219 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 73.7031 rlineto +-485 0 rlineto +0 -96 rlineto +27560 309 lineto +closepath eofill +0.2941 0.2941 0.2941 setrgbcolor +newpath +27560.5 309.5 moveto +218 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 72.7031 rlineto +-484 0 rlineto +0 -95 rlineto +27560.5 309.5 lineto +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +newpath +27561 310 moveto +217 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 71.7031 rlineto +-483 0 rlineto +0 -94 rlineto +27561 310 lineto +closepath eofill +1 1 1 setrgbcolor +newpath +27555 304 moveto +223 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 77.7031 rlineto +-489 0 rlineto +0 -100 rlineto +27555 304 lineto +closepath eofill +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +27555 304 moveto +223 0 rlineto +7 22.2969 rlineto +259 0 rlineto +0 77.7031 rlineto +-489 0 rlineto +0 -100 rlineto +27555 304 lineto +closepath stroke +2.0 setlinewidth +0 0 0 setrgbcolor +newpath +27555 326.2969 moveto +230 0 rlineto +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27565.3594 313.5781 moveto +P$0 +27571.8125 314.9063 moveto +P$1 +27571.8125 313.1563 moveto +P$2 +27585.2656 314.6094 moveto +P$3 +27592.4219 318.3594 moveto +P$4 +27600.6094 317.5469 moveto +P$5 +27604.3438 316.625 moveto +P$6 +27611.8594 315.4219 moveto +P$7 +27619.1563 313.5781 moveto +P$8 +27627.3906 314.4688 moveto +P$9 +27625.7656 319.4219 moveto +P$a +27632.1719 313.3438 moveto +P$b +27632.1719 310.3594 moveto +P$c +27641.3906 319.7031 moveto +P$d +27639.7656 314.9375 moveto +P$e +27646.1719 313.3438 moveto +P$b +27646.1719 310.3594 moveto +P$c +27652.8438 311.1719 moveto +P$f +27659.6094 317.5469 moveto +P$5 +27663.3438 316.625 moveto +P$6 +27665.4219 318.3594 moveto +P$4 +27669.5 313.3438 moveto +P$h +27687.8125 314.9063 moveto +P$1 +27687.8125 313.1563 moveto +P$2 +27699.8594 315.4219 moveto +P$7 +27701.1719 310.3594 moveto +P$n +27716.1563 313.5781 moveto +P$8 +27721.625 319.8906 moveto +P$q +27723.25 314.9375 moveto +P$r +27732.6094 317.5469 moveto +P$5 +27736.3438 316.625 moveto +P$6 +27744.3594 313.5781 moveto +P$0 +27754.8125 317.1563 moveto +P$i +27752.2969 316.3438 moveto +P$j +27757.4219 318.3594 moveto +P$4 +27762.0938 318.0156 moveto +P$m +27772.1719 313.3438 moveto +P$b +27772.1719 310.3594 moveto +P$c +fill +0.7843 0.7843 0.7843 setrgbcolor +89 48 24842.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +88 47 24843.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +87 46 24843.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +86 45 24844.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +85 44 24844.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +84 43 24845.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +83 42 24845.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +82 41 24846.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +81 40 24846.8 348 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -123 48 2051.75 340 simplerect +89 48 24838.8 340 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -123 48 2051.75 340 simplerect +89 48 24838.8 340 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -2066.75 356 11 0 360 arc +24853.8 356 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2066.75 356 11 0 360 arc +24853.8 356 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -2069.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2083.1094 356.8438 moveto -P$12 -2083.1094 353.2344 moveto +24856.7688 361.6406 moveto P$13 -2081.9219 352.2656 moveto +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24875.5344 352.9375 moveto P$14 -2092.8594 357.7188 moveto +24876.2063 352.2656 moveto P$15 -2095.0156 357.2656 moveto +24890.9094 353.4375 moveto P$16 -2102.0625 354.6406 moveto +24890.2375 352.2656 moveto P$17 -2104.875 354.4531 moveto +24900.2531 355.4531 moveto P$18 -2104.875 351.8906 moveto +24896.5813 357.7344 moveto P$19 -2112.6094 354.7031 moveto +24909.0344 355.7188 moveto P$1a -2117.8594 353.4375 moveto +24914.925 354.4531 moveto P$1b -2117.1875 352.2656 moveto +24914.925 351.8906 moveto P$1c -2122.7656 358.4219 moveto +24923.3938 357.0469 moveto P$1d -2125.4844 354.2969 moveto -P$1e -2135.2031 355.4531 moveto -P$1f -2131.5313 357.7344 moveto -P$1g -2138.875 354.4531 moveto -P$18 -2138.875 351.8906 moveto -P$19 -2142.9531 352.5938 moveto -P$1h -2145.7188 352.2656 moveto -P$1i -2157.6875 355.4531 moveto -P$1j -2161.8594 357.7188 moveto -P$15 -2164.0156 357.2656 moveto -P$16 -2166.875 354.4531 moveto -P$18 -2166.875 351.8906 moveto -P$19 -2169.875 351.8906 moveto -P$1k fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2052.75 372 moveto -121 0 rlineto +24839.8 372 moveto +87 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2052.75 380 moveto -121 0 rlineto +24839.8 380 moveto +87 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -96 48 1512 220 1 roundrect +101 48 25717.8 220 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -95 47 1512.5 220.5 1 roundrect +100 47 25718.3 220.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -94 46 1513 221 1 roundrect +99 46 25718.8 221 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -93 45 1513.5 221.5 1 roundrect +98 45 25719.3 221.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -92 44 1514 222 1 roundrect +97 44 25719.8 222 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -91 43 1514.5 222.5 1 roundrect +96 43 25720.3 222.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -90 42 1515 223 1 roundrect +95 42 25720.8 223 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -89 41 1515.5 223.5 1 roundrect +94 41 25721.3 223.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -88 40 1516 224 1 roundrect +93 40 25721.8 224 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -96 48 1508 216 simplerect +101 48 25713.8 216 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -96 48 1508 216 simplerect +101 48 25713.8 216 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -1523 232 11 0 360 arc +25728.8 232 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1523 232 11 0 360 arc +25728.8 232 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1525.9688 237.6406 moveto -P$11 +25731.7688 237.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1541.1094 229.4375 moveto +25746.9094 229.4375 moveto +P$16 +25746.2375 228.2656 moveto +P$17 +25752.9719 236.0313 moveto +P$1e +25756.6438 233.7344 moveto +P$1f +25760.9719 236.0313 moveto +P$1e +25764.6438 233.7344 moveto +P$1f +25767.925 227.8906 moveto +P$1g +25770.925 230.4531 moveto P$1b -1540.4375 228.2656 moveto +25770.925 227.8906 moveto P$1c -1552.7344 228.9375 moveto +25778.6594 230.7031 moveto +P$1h +25783.9094 233.7188 moveto +P$1i +25786.0656 233.2656 moveto +P$1j +25790.0031 228.5938 moveto +P$1k +25793.925 230.4531 moveto +P$1b +25793.925 227.8906 moveto +P$1c +25799.4719 231.2031 moveto P$1l -1559.4219 228.5469 moveto +25799.4719 230.2969 moveto P$1m -1565.7344 229.0625 moveto +25810.3938 233.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25714.8 248 moveto +99 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25714.8 256 moveto +99 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +61 48 26019.8 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +60 47 26020.3 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +59 46 26020.8 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +58 45 26021.3 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +57 44 26021.8 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +56 43 26022.3 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +55 42 26022.8 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +54 41 26023.3 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +53 40 26023.8 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +61 48 26015.8 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +61 48 26015.8 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26030.8 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26030.8 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26033.7688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26045.9719 228.2656 moveto P$1n -1565.7344 228.1094 moveto +26057.4719 231.2031 moveto +P$1l +26057.4719 230.2969 moveto +P$1m +26067.1125 230.6406 moveto P$1o -1575.8438 233.7344 moveto -P$1p -1572.1719 231.4531 moveto -P$1q -1579.125 230.4531 moveto -P$1r -1579.125 227.8906 moveto -P$19 -1587.75 233.4688 moveto -P$1s -1586.6719 233.1406 moveto -P$1t -1594.8594 230.7031 moveto -P$1a -1598.2031 228.5938 moveto -P$1h +26071.0031 228.5938 moveto +P$1k fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1509 248 moveto -94 0 rlineto +26016.8 248 moveto +59 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1509 256 moveto -94 0 rlineto +26016.8 256 moveto +59 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -61 48 1546.75 592 1 roundrect +94 48 25588 220 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -60 47 1547.25 592.5 1 roundrect +93 47 25588.5 220.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -59 46 1547.75 593 1 roundrect +92 46 25589 221 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -58 45 1548.25 593.5 1 roundrect +91 45 25589.5 221.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -57 44 1548.75 594 1 roundrect +90 44 25590 222 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -56 43 1549.25 594.5 1 roundrect +89 43 25590.5 222.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -55 42 1549.75 595 1 roundrect +88 42 25591 223 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -54 41 1550.25 595.5 1 roundrect +87 41 25591.5 223.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -53 40 1550.75 596 1 roundrect +86 40 25592 224 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -61 48 1542.75 588 simplerect +94 48 25584 216 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -61 48 1542.75 588 simplerect +94 48 25584 216 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -1557.75 604 11 0 360 arc +25599 232 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1557.75 604 11 0 360 arc +25599 232 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1560.7188 609.6406 moveto -P$11 +25601.9688 237.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1572.7969 600.2656 moveto -P$1u -1586.0625 602.6406 moveto +25617.1094 229.4375 moveto +P$16 +25616.4375 228.2656 moveto P$17 -1594.5 605.4688 moveto -P$1s -1593.4219 605.1406 moveto -P$1t -1600.6875 603.4531 moveto +25623.1719 236.0313 moveto +P$1e +25626.8438 233.7344 moveto +P$1f +25631.1719 236.0313 moveto +P$1e +25634.8438 233.7344 moveto +P$1f +25638.125 227.8906 moveto +P$1g +25641.125 230.4531 moveto +P$1b +25641.125 227.8906 moveto +P$1c +25647.1094 233.7188 moveto +P$1i +25649.2656 233.2656 moveto P$1j +25653.2031 228.5938 moveto +P$1k +25657.125 230.4531 moveto +P$1b +25657.125 227.8906 moveto +P$1c +25662.6719 231.2031 moveto +P$1l +25662.6719 230.2969 moveto +P$1m +25673.5938 233.0469 moveto +P$1d fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1543.75 620 moveto -59 0 rlineto +25585 248 moveto +92 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1543.75 628 moveto -59 0 rlineto +25585 256 moveto +92 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -70 48 1538 468 1 roundrect +130 48 25854 220 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -69 47 1538.5 468.5 1 roundrect +129 47 25854.5 220.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -68 46 1539 469 1 roundrect +128 46 25855 221 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -67 45 1539.5 469.5 1 roundrect +127 45 25855.5 221.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -66 44 1540 470 1 roundrect +126 44 25856 222 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -65 43 1540.5 470.5 1 roundrect +125 43 25856.5 222.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -64 42 1541 471 1 roundrect +124 42 25857 223 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -63 41 1541.5 471.5 1 roundrect +123 41 25857.5 223.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -62 40 1542 472 1 roundrect +122 40 25858 224 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -70 48 1534 464 simplerect +130 48 25850 216 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -70 48 1534 464 simplerect +130 48 25850 216 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -1549 480 11 0 360 arc +25865 232 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1549 480 11 0 360 arc +25865 232 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1551.9688 485.6406 moveto -P$11 +25867.9688 237.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1570.1406 483.7656 moveto +25883.1094 229.4375 moveto +P$16 +25882.4375 228.2656 moveto +P$17 +25889.1719 236.0313 moveto +P$1e +25892.8438 233.7344 moveto +P$1f +25897.1719 236.0313 moveto +P$1e +25900.8438 233.7344 moveto +P$1f +25904.125 227.8906 moveto +P$1g +25907.125 230.4531 moveto +P$1b +25907.125 227.8906 moveto +P$1c +25914.8594 230.7031 moveto +P$1h +25920.1094 233.7188 moveto +P$1i +25922.2656 233.2656 moveto +P$1j +25926.2031 228.5938 moveto +P$1k +25930.125 230.4531 moveto +P$1b +25930.125 227.8906 moveto +P$1c +25935.6719 231.2031 moveto +P$1l +25935.6719 230.2969 moveto +P$1m +25946.5938 233.0469 moveto +P$1d +25947.9688 228.2656 moveto +P$1p +25958.8594 237.625 moveto +P$1q +25963.1719 236.0313 moveto +P$1e +25966.8438 233.7344 moveto +P$1f +25975.75 233.4688 moveto +P$1r +25974.6719 233.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25851 248 moveto +128 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25851 256 moveto +128 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +123 48 13298.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +122 47 13299.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +121 46 13299.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +120 45 13300.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +119 44 13300.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +118 43 13301.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +117 42 13301.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +116 41 13302.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +115 40 13302.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +123 48 13294.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +123 48 13294.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13309.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13309.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13312.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13326.1594 480.8438 moveto +P$1t +13326.1594 477.2344 moveto +P$1u +13324.9719 476.2656 moveto P$1v -1576.9375 479.4531 moveto -P$1j -1580.6719 479.2031 moveto -P$1w -1580.6719 478.2969 moveto -P$1x -1586.0156 482.4219 moveto -P$1d -1588.7344 478.2969 moveto -P$1e -1595.1719 484.0313 moveto -P$1y -1598.8438 481.7344 moveto -P$1p -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1535 496 moveto -68 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1535 504 moveto -68 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -101 48 1506.75 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -100 47 1507.25 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -99 46 1507.75 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -98 45 1508.25 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -97 44 1508.75 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -96 43 1509.25 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -95 42 1509.75 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -94 41 1510.25 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -93 40 1510.75 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -101 48 1502.75 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -101 48 1502.75 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1517.75 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1517.75 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1520.7188 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1535.8594 105.4375 moveto -P$1b -1535.1875 104.2656 moveto -P$1c -1541.9219 112.0313 moveto -P$1y -1545.5938 109.7344 moveto -P$1p -1549.9219 112.0313 moveto -P$1y -1553.5938 109.7344 moveto -P$1p -1556.875 103.8906 moveto -P$1k -1559.875 106.4531 moveto -P$18 -1559.875 103.8906 moveto -P$19 -1567.6094 106.7031 moveto -P$1a -1572.8594 109.7188 moveto -P$15 -1575.0156 109.2656 moveto -P$16 -1578.9531 104.5938 moveto -P$1h -1582.875 106.4531 moveto -P$18 -1582.875 103.8906 moveto -P$19 -1588.4219 107.2031 moveto -P$1w -1588.4219 106.2969 moveto -P$1x -1599.3438 109.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1503.75 124 moveto -99 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1503.75 132 moveto -99 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -108 48 1363 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -107 47 1363.5 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -106 46 1364 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -105 45 1364.5 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -104 44 1365 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -103 43 1365.5 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -102 42 1366 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -101 41 1366.5 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -100 40 1367 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -108 48 1359 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -108 48 1359 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1374 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1374 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1376.9688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1389.1719 104.2656 moveto -P$20 -1402.2344 107.7188 moveto -P$21 -1411.1094 109.7188 moveto -P$15 -1413.2656 109.2656 moveto -P$16 -1416.125 106.4531 moveto -P$18 -1416.125 103.8906 moveto -P$19 -1419.125 103.8906 moveto -P$1k -1425.1094 105.4375 moveto -P$1b -1424.4375 104.2656 moveto -P$1c -1434.4531 107.4531 moveto -P$1f -1430.7813 109.7344 moveto -P$1g -1441.9375 107.4531 moveto -P$1j -1448.75 109.4688 moveto -P$1s -1447.6719 109.1406 moveto -P$1t -1455.3125 106.6406 moveto -P$17 -1462.3125 106.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1360 124 moveto -106 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1360 132 moveto -106 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -64 48 1528 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -63 47 1528.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -62 46 1529 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -61 45 1529.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -60 44 1530 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -59 43 1530.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -58 42 1531 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -57 41 1531.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -56 40 1532 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -64 48 1524 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -64 48 1524 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1539 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1539 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1541.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1555.3594 353.2344 moveto -P$22 -1554.1719 352.2656 moveto -P$23 -1565.1094 357.7188 moveto -P$15 -1567.2656 357.2656 moveto -P$16 -1573.9375 355.4531 moveto -P$1j -1576.2031 352.5938 moveto -P$1h -1582.8594 361.625 moveto -P$24 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1525 372 moveto -62 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1525 380 moveto -62 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -97 48 1325.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -96 47 1326.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -95 46 1326.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -94 45 1327.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -93 44 1327.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -92 43 1328.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -91 42 1328.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -90 41 1329.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -89 40 1329.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -97 48 1321.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -97 48 1321.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1336.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1336.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1339.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1353.1094 477.2344 moveto -P$22 -1351.9219 476.2656 moveto -P$23 -1362.8594 481.7188 moveto -P$15 -1365.0156 481.2656 moveto -P$16 -1371.6875 479.4531 moveto -P$1j -1373.9531 476.5938 moveto -P$1h -1380.6094 485.625 moveto -P$24 -1383.9219 476.2656 moveto -P$20 -1396.9844 479.7188 moveto -P$21 -1405.8594 481.7188 moveto -P$15 -1408.0156 481.2656 moveto -P$16 -1410.875 478.4531 moveto -P$18 -1410.875 475.8906 moveto -P$19 -1413.875 475.8906 moveto -P$1k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1322.75 496 moveto -95 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1322.75 504 moveto -95 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -112 48 1496.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -111 47 1497 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -110 46 1497.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -109 45 1498 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -108 44 1498.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -107 43 1499 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -106 42 1499.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -105 41 1500 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -104 40 1500.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -112 48 1492.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -112 48 1492.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1507.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1507.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1510.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1523.8594 725.2344 moveto -P$22 -1522.6719 724.2656 moveto -P$23 -1536.25 729.4688 moveto -P$1s -1535.1719 729.1406 moveto -P$1t -1542.4375 727.4531 moveto -P$1j -1547.8125 726.6406 moveto -P$17 -1553.1719 727.2031 moveto -P$1w -1553.1719 726.2969 moveto -P$1x -1564.0938 729.0469 moveto -P$1z -1566.6719 724.2656 moveto -P$25 -1578.6094 729.7188 moveto -P$15 -1580.7656 729.2656 moveto -P$16 -1588.7344 727.7188 moveto -P$21 -1600.25 729.4688 moveto -P$1s -1599.1719 729.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1493.5 744 moveto -110 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1493.5 752 moveto -110 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -120 48 1081.5 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -119 47 1082 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -118 46 1082.5 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -117 45 1083 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -116 44 1083.5 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -115 43 1084 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -114 42 1084.5 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -113 41 1085 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -112 40 1085.5 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -120 48 1077.5 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -120 48 1077.5 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1092.5 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1092.5 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1095.4688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1111.8281 232.9063 moveto -P$26 -1108.8594 229.2344 moveto -P$27 -1121.25 233.4688 moveto -P$1s -1120.1719 233.1406 moveto -P$1t -1127.8125 230.6406 moveto -P$17 -1133.1719 231.2031 moveto -P$1w -1133.1719 230.2969 moveto -P$1x -1138.5156 234.4219 moveto -P$1d -1141.2344 230.2969 moveto -P$1e -1150.4375 231.4531 moveto -P$1j -1156.3594 230.7031 moveto -P$1a -1164.25 233.4688 moveto -P$1s -1163.1719 233.1406 moveto -P$1t -1165.4688 228.2656 moveto +13335.9094 481.7188 moveto P$1i -1176.3594 237.625 moveto -P$24 -1180.6719 236.0313 moveto -P$1y -1184.3438 233.7344 moveto -P$1p -1193.25 233.4688 moveto -P$1s -1192.1719 233.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1078.5 248 moveto -118 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1078.5 256 moveto -118 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -91 48 1081.75 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -90 47 1082.25 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -89 46 1082.75 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -88 45 1083.25 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -87 44 1083.75 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -86 43 1084.25 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -85 42 1084.75 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -84 41 1085.25 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -83 40 1085.75 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -91 48 1077.75 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -91 48 1077.75 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1092.75 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1092.75 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1095.7188 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1112.0781 108.9063 moveto -P$26 -1109.1094 105.2344 moveto -P$27 -1121.5 109.4688 moveto -P$1s -1120.4219 109.1406 moveto -P$1t -1128.0625 106.6406 moveto -P$17 -1133.4219 107.2031 moveto -P$1w -1133.4219 106.2969 moveto -P$1x -1138.7656 110.4219 moveto -P$1d -1141.4844 106.2969 moveto -P$1e -1150.6875 107.4531 moveto +13338.0656 481.2656 moveto P$1j -1156.6094 106.7031 moveto -P$1a -1164.5 109.4688 moveto -P$1s -1163.4219 109.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1078.75 124 moveto -89 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1078.75 132 moveto -89 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -59 48 1452.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -58 47 1453.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -57 46 1453.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -56 45 1454.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -55 44 1454.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -54 43 1455.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -53 42 1455.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -52 41 1456.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -51 40 1456.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -59 48 1448.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -59 48 1448.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1463.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1463.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1466.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1483.0781 604.9063 moveto -P$26 -1480.1094 601.2344 moveto -P$27 -1489.4219 603.2031 moveto -P$1w -1489.4219 602.2969 moveto -P$1x -1494.875 599.8906 moveto -P$1k -1503.5 605.4688 moveto -P$1s -1502.4219 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1449.75 620 moveto -57 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1449.75 628 moveto -57 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -120 48 1208.5 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -119 47 1209 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -118 46 1209.5 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -117 45 1210 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -116 44 1210.5 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -115 43 1211 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -114 42 1211.5 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -113 41 1212 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -112 40 1212.5 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -120 48 1204.5 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -120 48 1204.5 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1219.5 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1219.5 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1222.4688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1238.2344 105.0625 moveto -P$1n -1238.2344 104.1094 moveto +13345.1125 478.6406 moveto P$1o -1248.3438 109.7344 moveto -P$1p -1244.6719 107.4531 moveto -P$1q -1251.625 106.4531 moveto -P$1r -1251.625 103.8906 moveto -P$19 -1260.25 109.4688 moveto -P$1s -1259.1719 109.1406 moveto -P$1t -1267.3594 106.7031 moveto -P$1a -1270.7031 104.5938 moveto +13347.925 478.4531 moveto +P$1b +13347.925 475.8906 moveto +P$1c +13355.6594 478.7031 moveto P$1h -1281.2344 104.9375 moveto -P$1l -1285.1719 107.2031 moveto -P$1w -1285.1719 106.2969 moveto -P$1x -1296.0938 109.0469 moveto -P$1z -1299.7031 104.5938 moveto -P$1h -1309.25 109.4688 moveto -P$1s -1308.1719 109.1406 moveto -P$1t -1317.0938 106.4531 moveto -P$28 -1318.7031 104.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1205.5 124 moveto -118 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1205.5 132 moveto -118 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -153 48 1307.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -152 47 1308.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -151 46 1308.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -150 45 1309.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -149 44 1309.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -148 43 1310.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -147 42 1310.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -146 41 1311.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -145 40 1311.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -153 48 1303.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -153 48 1303.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1318.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1318.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1321.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1333.7969 724.2656 moveto -P$1u -1347.0625 726.6406 moveto +13360.9094 477.4375 moveto +P$16 +13360.2375 476.2656 moveto P$17 -1355.5 729.4688 moveto -P$1s -1354.4219 729.1406 moveto -P$1t -1361.6875 727.4531 moveto -P$1j -1365.8594 725.4375 moveto -P$1b -1365.1875 724.2656 moveto -P$1c -1370.7656 730.4219 moveto -P$1d -1373.4844 726.2969 moveto -P$1e -1379.9531 724.5938 moveto -P$1h -1389.3438 729.0469 moveto -P$29 -1397.5 729.4688 moveto -P$1s -1396.4219 729.1406 moveto -P$1t -1405.3438 729.0469 moveto -P$1z -1408.9531 724.5938 moveto -P$1h -1412.875 726.4531 moveto +13365.8156 482.4219 moveto +P$1w +13368.5344 478.2969 moveto +P$1x +13378.2531 479.4531 moveto P$18 -1412.875 723.8906 moveto +13374.5813 481.7344 moveto P$19 -1420.6094 726.7031 moveto -P$1a -1425.8594 729.7188 moveto -P$15 -1428.0156 729.2656 moveto -P$16 -1431.9531 724.5938 moveto -P$1h -1435.875 726.4531 moveto -P$18 -1435.875 723.8906 moveto -P$19 -1441.4219 727.2031 moveto -P$1w -1441.4219 726.2969 moveto -P$1x -1452.3438 729.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1304.75 744 moveto -151 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1304.75 752 moveto -151 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -62 48 2593.5 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -61 47 2594 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -60 46 2594.5 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -59 45 2595 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -58 44 2595.5 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -57 43 2596 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -56 42 2596.5 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -55 41 2597 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -54 40 2597.5 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -62 48 2589.5 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -62 48 2589.5 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2604.5 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2604.5 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2607.4688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2622.6094 229.4375 moveto +13381.925 478.4531 moveto P$1b -2621.9375 228.2656 moveto +13381.925 475.8906 moveto P$1c -2628.7031 228.5938 moveto -P$1h -2635.1719 231.2031 moveto -P$1w -2635.1719 230.2969 moveto -P$1x -2640.1719 228.2656 moveto -P$2a -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2590.5 248 moveto -60 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2590.5 256 moveto -60 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -113 48 2567.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -112 47 2568.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -111 46 2568.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -110 45 2569.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -109 44 2569.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -108 43 2570.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -107 42 2570.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -106 41 2571.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -105 40 2571.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -113 48 2563.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -113 48 2563.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2578.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2578.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2581.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2596.8594 353.4375 moveto -P$1b -2596.1875 352.2656 moveto -P$1c -2602.9531 352.5938 moveto -P$1h -2609.4219 355.2031 moveto -P$1w -2609.4219 354.2969 moveto -P$1x -2614.4219 352.2656 moveto -P$2a -2625.1094 353.2344 moveto -P$22 -2623.9219 352.2656 moveto -P$23 -2635.6875 355.4531 moveto -P$1j -2639.4219 355.2031 moveto -P$1w -2639.4219 354.2969 moveto -P$1x -2644.1094 354.4531 moveto -P$2b -2650.875 354.4531 moveto -P$18 -2650.875 351.8906 moveto -P$19 -2658.2031 355.4531 moveto -P$1f -2654.5313 357.7344 moveto -P$1g -2667.5 357.4688 moveto -P$1s -2666.4219 357.1406 moveto -P$1t -2673.6875 355.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2564.75 372 moveto -111 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2564.75 380 moveto -111 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -139 48 2585.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -138 47 2586.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -137 46 2586.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -136 45 2587.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -135 44 2587.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -134 43 2588.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -133 42 2588.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -132 41 2589.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -131 40 2589.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -139 48 2581.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -139 48 2581.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2596.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2596.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2599.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2618.4844 476.9375 moveto -P$1l -2622.8594 481.7188 moveto -P$15 -2625.0156 481.2656 moveto -P$16 -2628.9531 476.5938 moveto -P$1h -2638.5 481.4688 moveto -P$1s -2637.4219 481.1406 moveto -P$1t -2645.2031 481.6563 moveto -P$2c -2646.2813 484.2031 moveto -P$2d -2651.4219 479.2031 moveto -P$1w -2651.4219 478.2969 moveto -P$1x -2660.6875 479.4531 moveto -P$1j -2664.6094 485.625 moveto -P$24 -2669.1094 477.2344 moveto -P$22 -2667.9219 476.2656 moveto -P$23 -2679.6875 479.4531 moveto -P$1j -2683.4219 479.2031 moveto -P$1w -2683.4219 478.2969 moveto -P$1x -2688.1094 478.4531 moveto -P$2b -2694.875 478.4531 moveto -P$18 -2694.875 475.8906 moveto -P$19 -2702.2031 479.4531 moveto -P$1f -2698.5313 481.7344 moveto -P$1g -2711.5 481.4688 moveto -P$1s -2710.4219 481.1406 moveto -P$1t -2717.6875 479.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2582.75 496 moveto -137 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2582.75 504 moveto -137 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -117 48 2440.75 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -116 47 2441.25 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -115 46 2441.75 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -114 45 2442.25 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -113 44 2442.75 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -112 43 2443.25 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -111 42 2443.75 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -110 41 2444.25 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -109 40 2444.75 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -117 48 2436.75 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -117 48 2436.75 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2451.75 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2451.75 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2454.7188 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2473.4844 228.9375 moveto -P$1l -2477.8594 233.7188 moveto -P$15 -2480.0156 233.2656 moveto -P$16 -2483.9531 228.5938 moveto -P$1h -2493.5 233.4688 moveto -P$1s -2492.4219 233.1406 moveto -P$1t -2500.2031 233.6563 moveto -P$2c -2501.2813 236.2031 moveto -P$2d -2506.4219 231.2031 moveto -P$1w -2506.4219 230.2969 moveto -P$1x -2515.6875 231.4531 moveto -P$1j -2519.6094 237.625 moveto -P$24 -2525.8594 229.4375 moveto -P$1b -2525.1875 228.2656 moveto -P$1c -2530.875 227.8906 moveto +13386.0031 476.5938 moveto P$1k -2533.875 230.4531 moveto -P$18 -2533.875 227.8906 moveto -P$19 -2539.8594 233.7188 moveto -P$15 -2542.0156 233.2656 moveto -P$16 -2549.0625 230.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2437.75 248 moveto -115 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2437.75 256 moveto -115 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -88 48 2440.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -87 47 2441 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -86 46 2441.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -85 45 2442 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -84 44 2442.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -83 43 2443 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -82 42 2443.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -81 41 2444 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -80 40 2444.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -88 48 2436.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -88 48 2436.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2451.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2451.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2454.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2466.6719 352.2656 moveto -P$2e -2470.7031 352.5938 moveto -P$1h -2480.25 357.4688 moveto -P$1s -2479.1719 357.1406 moveto -P$1t -2487.7344 355.7188 moveto -P$21 -2496.6094 353.4375 moveto -P$1b -2495.9375 352.2656 moveto -P$1c -2501.625 351.8906 moveto -P$1k -2504.625 354.4531 moveto -P$18 -2504.625 351.8906 moveto -P$19 -2510.6094 357.7188 moveto -P$15 -2512.7656 357.2656 moveto -P$16 -2519.8125 354.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2437.5 372 moveto -86 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2437.5 380 moveto -86 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -110 48 2440 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -109 47 2440.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -108 46 2441 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -107 45 2441.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -106 44 2442 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -105 43 2442.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -104 42 2443 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -103 41 2443.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -102 40 2444 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -110 48 2436 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -110 48 2436 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2451 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2451 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2453.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2466.1719 476.2656 moveto -P$2e -2470.2031 476.5938 moveto -P$1h -2479.75 481.4688 moveto -P$1s -2478.6719 481.1406 moveto -P$1t -2487.2344 479.7188 moveto -P$21 -2494.3594 477.2344 moveto -P$22 -2493.1719 476.2656 moveto -P$23 -2504.9375 479.4531 moveto -P$1j -2508.6719 479.2031 moveto -P$1w -2508.6719 478.2969 moveto -P$1x -2513.3594 478.4531 moveto -P$2b -2520.125 478.4531 moveto -P$18 -2520.125 475.8906 moveto -P$19 -2527.4531 479.4531 moveto -P$1f -2523.7813 481.7344 moveto -P$1g -2536.75 481.4688 moveto -P$1s -2535.6719 481.1406 moveto -P$1t -2542.9375 479.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2437 496 moveto -108 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2437 504 moveto -108 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -101 48 1664.75 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -100 47 1665.25 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -99 46 1665.75 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -98 45 1666.25 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -97 44 1666.75 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -96 43 1667.25 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -95 42 1667.75 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -94 41 1668.25 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -93 40 1668.75 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -101 48 1660.75 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -101 48 1660.75 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1675.75 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1675.75 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1678.7188 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1693.8594 229.4375 moveto -P$1b -1693.1875 228.2656 moveto -P$1c -1699.9219 236.0313 moveto -P$1y -1703.5938 233.7344 moveto +13388.7688 476.2656 moveto P$1p -1707.9219 236.0313 moveto +13400.7375 479.4531 moveto P$1y -1711.5938 233.7344 moveto -P$1p -1714.875 227.8906 moveto -P$1k -1717.875 230.4531 moveto -P$18 -1717.875 227.8906 moveto -P$19 -1725.6094 230.7031 moveto -P$1a -1730.8594 233.7188 moveto -P$15 -1733.0156 233.2656 moveto -P$16 -1736.9531 228.5938 moveto -P$1h -1740.875 230.4531 moveto -P$18 -1740.875 227.8906 moveto -P$19 -1746.4219 231.2031 moveto -P$1w -1746.4219 230.2969 moveto -P$1x -1757.3438 233.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1661.75 248 moveto -99 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1661.75 256 moveto -99 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -61 48 1966.75 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -60 47 1967.25 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -59 46 1967.75 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -58 45 1968.25 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -57 44 1968.75 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -56 43 1969.25 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -55 42 1969.75 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -54 41 1970.25 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -53 40 1970.75 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -61 48 1962.75 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -61 48 1962.75 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1977.75 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1977.75 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1980.7188 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1992.9219 228.2656 moveto -P$2f -2004.4219 231.2031 moveto -P$1w -2004.4219 230.2969 moveto -P$1x -2014.0625 230.6406 moveto -P$17 -2017.9531 228.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1963.75 248 moveto -59 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1963.75 256 moveto -59 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -130 48 1801 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -129 47 1801.5 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -128 46 1802 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -127 45 1802.5 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -126 44 1803 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -125 43 1803.5 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -124 42 1804 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -123 41 1804.5 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -122 40 1805 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -130 48 1797 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -130 48 1797 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1812 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1812 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1814.9688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1830.1094 229.4375 moveto -P$1b -1829.4375 228.2656 moveto -P$1c -1836.1719 236.0313 moveto -P$1y -1839.8438 233.7344 moveto -P$1p -1844.1719 236.0313 moveto -P$1y -1847.8438 233.7344 moveto -P$1p -1851.125 227.8906 moveto -P$1k -1854.125 230.4531 moveto -P$18 -1854.125 227.8906 moveto -P$19 -1861.8594 230.7031 moveto -P$1a -1867.1094 233.7188 moveto -P$15 -1869.2656 233.2656 moveto -P$16 -1873.2031 228.5938 moveto -P$1h -1877.125 230.4531 moveto -P$18 -1877.125 227.8906 moveto -P$19 -1882.6719 231.2031 moveto -P$1w -1882.6719 230.2969 moveto -P$1x -1893.5938 233.0469 moveto -P$1z -1894.9688 228.2656 moveto +13404.9094 481.7188 moveto P$1i -1905.8594 237.625 moveto -P$24 -1910.1719 236.0313 moveto -P$1y -1913.8438 233.7344 moveto -P$1p -1922.75 233.4688 moveto -P$1s -1921.6719 233.1406 moveto -P$1t +13407.0656 481.2656 moveto +P$1j +13409.925 478.4531 moveto +P$1b +13409.925 475.8906 moveto +P$1c +13412.925 475.8906 moveto +P$1g fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1798 248 moveto -128 0 rlineto +13295.8 496 moveto +121 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1798 256 moveto -128 0 rlineto +13295.8 504 moveto +121 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -88 48 7260.5 592 1 roundrect +96 48 12991 220 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -87 47 7261 592.5 1 roundrect +95 47 12991.5 220.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -86 46 7261.5 593 1 roundrect +94 46 12992 221 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -85 45 7262 593.5 1 roundrect +93 45 12992.5 221.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -84 44 7262.5 594 1 roundrect +92 44 12993 222 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -83 43 7263 594.5 1 roundrect +91 43 12993.5 222.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -82 42 7263.5 595 1 roundrect +90 42 12994 223 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -81 41 7264 595.5 1 roundrect +89 41 12994.5 223.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -80 40 7264.5 596 1 roundrect +88 40 12995 224 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -88 48 7256.5 588 simplerect +96 48 12987 216 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -88 48 7256.5 588 simplerect +96 48 12987 216 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -7271.5 604 11 0 360 arc +13002 232 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7271.5 604 11 0 360 arc +13002 232 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -7274.4688 609.6406 moveto -P$11 +13004.9688 237.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -7293.2344 600.9375 moveto -P$1l -7297.6094 605.7188 moveto -P$15 -7299.7656 605.2656 moveto +13020.1094 229.4375 moveto P$16 -7303.7031 600.5938 moveto -P$1h -7313.25 605.4688 moveto +13019.4375 228.2656 moveto +P$17 +13031.7344 228.9375 moveto +P$14 +13038.4219 228.5469 moveto +P$1z +13044.7344 229.0625 moveto +P$20 +13044.7344 228.1094 moveto +P$21 +13054.8438 233.7344 moveto +P$1f +13051.1719 231.4531 moveto +P$22 +13058.125 230.4531 moveto +P$23 +13058.125 227.8906 moveto +P$1c +13066.75 233.4688 moveto +P$1r +13065.6719 233.1406 moveto P$1s -7312.1719 605.1406 moveto -P$1t -7319.9531 605.6563 moveto -P$2c -7321.0313 608.2031 moveto -P$2d -7326.1719 603.2031 moveto -P$1w -7326.1719 602.2969 moveto -P$1x -7335.4375 603.4531 moveto -P$1j -7339.3594 609.625 moveto -P$24 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7257.5 620 moveto -86 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7257.5 628 moveto -86 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -160 48 7242 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -159 47 7242.5 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -158 46 7243 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -157 45 7243.5 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -156 44 7244 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -155 43 7244.5 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -154 42 7245 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -153 41 7245.5 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -152 40 7246 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -160 48 7238 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -160 48 7238 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7253 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7253 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7255.9688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7274.7344 724.9375 moveto -P$1l -7279.1094 729.7188 moveto -P$15 -7281.2656 729.2656 moveto -P$16 -7285.2031 724.5938 moveto +13073.8594 230.7031 moveto P$1h -7294.75 729.4688 moveto -P$1s -7293.6719 729.1406 moveto -P$1t -7301.4531 729.6563 moveto -P$2c -7302.5313 732.2031 moveto -P$2d -7307.6719 727.2031 moveto -P$1w -7307.6719 726.2969 moveto -P$1x -7316.9375 727.4531 moveto -P$1j -7320.8594 733.625 moveto -P$24 -7324.1719 724.2656 moveto -P$2g -7332.6719 727.2031 moveto -P$1w -7332.6719 726.2969 moveto -P$1x -7342.8594 726.7031 moveto -P$1a -7348.1094 729.7188 moveto -P$15 -7350.2656 729.2656 moveto -P$16 -7353.125 723.8906 moveto +13077.2031 228.5938 moveto P$1k -7356.125 726.4531 moveto +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12988 248 moveto +94 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12988 256 moveto +94 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +61 48 13180.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +60 47 13181.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +59 46 13181.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +58 45 13182.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +57 44 13182.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +56 43 13183.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +55 42 13183.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +54 41 13184.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +53 40 13184.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +61 48 13176.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +61 48 13176.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13191.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13191.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13194.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13206.8469 600.2656 moveto +P$24 +13220.1125 602.6406 moveto +P$1o +13228.55 605.4688 moveto +P$1r +13227.4719 605.1406 moveto +P$1s +13234.7375 603.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13177.8 620 moveto +59 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13177.8 628 moveto +59 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +70 48 13172 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +69 47 13172.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +68 46 13173 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +67 45 13173.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +66 44 13174 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +65 43 13174.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +64 42 13175 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +63 41 13175.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +62 40 13176 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +70 48 13168 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +70 48 13168 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13183 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13183 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13185.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13204.1406 483.7656 moveto +P$25 +13210.9375 479.4531 moveto +P$1y +13214.6719 479.2031 moveto +P$1l +13214.6719 478.2969 moveto +P$1m +13220.0156 482.4219 moveto +P$1w +13222.7344 478.2969 moveto +P$1x +13229.1719 484.0313 moveto +P$1e +13232.8438 481.7344 moveto +P$1f +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13169 496 moveto +68 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13169 504 moveto +68 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +101 48 12715.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +100 47 12716.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +99 46 12716.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +98 45 12717.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +97 44 12717.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +96 43 12718.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +95 42 12718.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +94 41 12719.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +93 40 12719.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +101 48 12711.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +101 48 12711.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +12726.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12726.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12729.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12744.9094 105.4375 moveto +P$16 +12744.2375 104.2656 moveto +P$17 +12750.9719 112.0313 moveto +P$1e +12754.6438 109.7344 moveto +P$1f +12758.9719 112.0313 moveto +P$1e +12762.6438 109.7344 moveto +P$1f +12765.925 103.8906 moveto +P$1g +12768.925 106.4531 moveto +P$1b +12768.925 103.8906 moveto +P$1c +12776.6594 106.7031 moveto +P$1h +12781.9094 109.7188 moveto +P$1i +12784.0656 109.2656 moveto +P$1j +12788.0031 104.5938 moveto +P$1k +12791.925 106.4531 moveto +P$1b +12791.925 103.8906 moveto +P$1c +12797.4719 107.2031 moveto +P$1l +12797.4719 106.2969 moveto +P$1m +12808.3938 109.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12712.8 124 moveto +99 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12712.8 132 moveto +99 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +108 48 13007 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +107 47 13007.5 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +106 46 13008 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +105 45 13008.5 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +104 44 13009 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +103 43 13009.5 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +102 42 13010 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +101 41 13010.5 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +100 40 13011 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +108 48 13003 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +108 48 13003 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13018 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13018 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13020.9688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13033.1719 104.2656 moveto +P$26 +13046.2344 107.7188 moveto +P$1a +13055.1094 109.7188 moveto +P$1i +13057.2656 109.2656 moveto +P$1j +13060.125 106.4531 moveto +P$1b +13060.125 103.8906 moveto +P$1c +13063.125 103.8906 moveto +P$1g +13069.1094 105.4375 moveto +P$16 +13068.4375 104.2656 moveto +P$17 +13078.4531 107.4531 moveto P$18 -7356.125 723.8906 moveto +13074.7813 109.7344 moveto P$19 -7358.6563 726.4531 moveto +13085.9375 107.4531 moveto +P$1y +13092.75 109.4688 moveto +P$1r +13091.6719 109.1406 moveto +P$1s +13099.3125 106.6406 moveto +P$1o +13106.3125 106.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13004 124 moveto +106 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13004 132 moveto +106 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +64 48 13103 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +63 47 13103.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +62 46 13104 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +61 45 13104.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +60 44 13105 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +59 43 13105.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +58 42 13106 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +57 41 13106.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +56 40 13107 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +64 48 13099 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +64 48 13099 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13114 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13114 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13116.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13130.3594 353.2344 moveto +P$27 +13129.1719 352.2656 moveto +P$28 +13140.1094 357.7188 moveto +P$1i +13142.2656 357.2656 moveto +P$1j +13148.9375 355.4531 moveto +P$1y +13151.2031 352.5938 moveto +P$1k +13157.8594 361.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13100 372 moveto +62 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13100 380 moveto +62 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +97 48 13039.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +96 47 13040.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +95 46 13040.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +94 45 13041.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +93 44 13041.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +92 43 13042.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +91 42 13042.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +90 41 13043.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +89 40 13043.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +97 48 13035.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +97 48 13035.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13050.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13050.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13053.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13067.1594 477.2344 moveto +P$27 +13065.9719 476.2656 moveto +P$28 +13076.9094 481.7188 moveto +P$1i +13079.0656 481.2656 moveto +P$1j +13085.7375 479.4531 moveto +P$1y +13088.0031 476.5938 moveto +P$1k +13094.6594 485.625 moveto +P$1q +13097.9719 476.2656 moveto +P$26 +13111.0344 479.7188 moveto +P$1a +13119.9094 481.7188 moveto +P$1i +13122.0656 481.2656 moveto +P$1j +13124.925 478.4531 moveto +P$1b +13124.925 475.8906 moveto +P$1c +13127.925 475.8906 moveto +P$1g +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13036.8 496 moveto +95 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13036.8 504 moveto +95 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +112 48 13130.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +111 47 13131 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +110 46 13131.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +109 45 13132 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +108 44 13132.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +107 43 13133 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +106 42 13133.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +105 41 13134 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +104 40 13134.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +112 48 13126.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +112 48 13126.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13141.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13141.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13144.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13157.8594 725.2344 moveto +P$27 +13156.6719 724.2656 moveto +P$28 +13170.25 729.4688 moveto +P$1r +13169.1719 729.1406 moveto +P$1s +13176.4375 727.4531 moveto +P$1y +13181.8125 726.6406 moveto +P$1o +13187.1719 727.2031 moveto +P$1l +13187.1719 726.2969 moveto +P$1m +13198.0938 729.0469 moveto +P$1d +13200.6719 724.2656 moveto +P$29 +13212.6094 729.7188 moveto +P$1i +13214.7656 729.2656 moveto +P$1j +13222.7344 727.7188 moveto +P$1a +13234.25 729.4688 moveto +P$1r +13233.1719 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13127.5 744 moveto +110 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13127.5 752 moveto +110 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +120 48 13122.5 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +119 47 13123 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +118 46 13123.5 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +117 45 13124 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +116 44 13124.5 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +115 43 13125 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +114 42 13125.5 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +113 41 13126 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +112 40 13126.5 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +120 48 13118.5 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +120 48 13118.5 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13133.5 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13133.5 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13136.4688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13152.8281 232.9063 moveto +P$2a +13149.8594 229.2344 moveto +P$2b +13162.25 233.4688 moveto +P$1r +13161.1719 233.1406 moveto +P$1s +13168.8125 230.6406 moveto +P$1o +13174.1719 231.2031 moveto +P$1l +13174.1719 230.2969 moveto +P$1m +13179.5156 234.4219 moveto +P$1w +13182.2344 230.2969 moveto +P$1x +13191.4375 231.4531 moveto +P$1y +13197.3594 230.7031 moveto +P$1h +13205.25 233.4688 moveto +P$1r +13204.1719 233.1406 moveto +P$1s +13206.4688 228.2656 moveto +P$1p +13217.3594 237.625 moveto +P$1q +13221.6719 236.0313 moveto +P$1e +13225.3438 233.7344 moveto +P$1f +13234.25 233.4688 moveto +P$1r +13233.1719 233.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13119.5 248 moveto +118 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13119.5 256 moveto +118 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +91 48 13150.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +90 47 13151.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +89 46 13151.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +88 45 13152.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +87 44 13152.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +86 43 13153.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +85 42 13153.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +84 41 13154.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +83 40 13154.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +91 48 13146.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +91 48 13146.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13161.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13161.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13164.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13181.1281 108.9063 moveto +P$2a +13178.1594 105.2344 moveto +P$2b +13190.55 109.4688 moveto +P$1r +13189.4719 109.1406 moveto +P$1s +13197.1125 106.6406 moveto +P$1o +13202.4719 107.2031 moveto +P$1l +13202.4719 106.2969 moveto +P$1m +13207.8156 110.4219 moveto +P$1w +13210.5344 106.2969 moveto +P$1x +13219.7375 107.4531 moveto +P$1y +13225.6594 106.7031 moveto +P$1h +13233.55 109.4688 moveto +P$1r +13232.4719 109.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13147.8 124 moveto +89 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13147.8 132 moveto +89 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +59 48 13086.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +58 47 13087.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +57 46 13087.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +56 45 13088.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +55 44 13088.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +54 43 13089.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +53 42 13089.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +52 41 13090.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +51 40 13090.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +59 48 13082.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +59 48 13082.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13097.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13097.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13100.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13117.1281 604.9063 moveto +P$2a +13114.1594 601.2344 moveto +P$2b +13123.4719 603.2031 moveto +P$1l +13123.4719 602.2969 moveto +P$1m +13128.925 599.8906 moveto +P$1g +13137.55 605.4688 moveto +P$1r +13136.4719 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13083.8 620 moveto +57 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13083.8 628 moveto +57 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +120 48 12852.5 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +119 47 12853 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +118 46 12853.5 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +117 45 12854 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +116 44 12854.5 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +115 43 12855 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +114 42 12855.5 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +113 41 12856 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +112 40 12856.5 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +120 48 12848.5 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +120 48 12848.5 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +12863.5 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12863.5 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12866.4688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12882.2344 105.0625 moveto +P$20 +12882.2344 104.1094 moveto +P$21 +12892.3438 109.7344 moveto +P$1f +12888.6719 107.4531 moveto +P$22 +12895.625 106.4531 moveto +P$23 +12895.625 103.8906 moveto +P$1c +12904.25 109.4688 moveto +P$1r +12903.1719 109.1406 moveto +P$1s +12911.3594 106.7031 moveto +P$1h +12914.7031 104.5938 moveto +P$1k +12925.2344 104.9375 moveto +P$14 +12929.1719 107.2031 moveto +P$1l +12929.1719 106.2969 moveto +P$1m +12940.0938 109.0469 moveto +P$1d +12943.7031 104.5938 moveto +P$1k +12953.25 109.4688 moveto +P$1r +12952.1719 109.1406 moveto +P$1s +12961.0938 106.4531 moveto +P$2c +12962.7031 104.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12849.5 124 moveto +118 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12849.5 132 moveto +118 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +153 48 12915.8 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +152 47 12916.3 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +151 46 12916.8 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +150 45 12917.3 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +149 44 12917.8 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +148 43 12918.3 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +147 42 12918.8 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +146 41 12919.3 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +145 40 12919.8 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +153 48 12911.8 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +153 48 12911.8 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +12926.8 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12926.8 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12929.7688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12941.8469 724.2656 moveto +P$24 +12955.1125 726.6406 moveto +P$1o +12963.55 729.4688 moveto +P$1r +12962.4719 729.1406 moveto +P$1s +12969.7375 727.4531 moveto +P$1y +12973.9094 725.4375 moveto +P$16 +12973.2375 724.2656 moveto +P$17 +12978.8156 730.4219 moveto +P$1w +12981.5344 726.2969 moveto +P$1x +12988.0031 724.5938 moveto +P$1k +12997.3938 729.0469 moveto +P$2d +13005.55 729.4688 moveto +P$1r +13004.4719 729.1406 moveto +P$1s +13013.3938 729.0469 moveto +P$1d +13017.0031 724.5938 moveto +P$1k +13020.925 726.4531 moveto +P$1b +13020.925 723.8906 moveto +P$1c +13028.6594 726.7031 moveto +P$1h +13033.9094 729.7188 moveto +P$1i +13036.0656 729.2656 moveto +P$1j +13040.0031 724.5938 moveto +P$1k +13043.925 726.4531 moveto +P$1b +13043.925 723.8906 moveto +P$1c +13049.4719 727.2031 moveto +P$1l +13049.4719 726.2969 moveto +P$1m +13060.3938 729.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12912.8 744 moveto +151 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12912.8 752 moveto +151 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +62 48 512.5 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +61 47 513 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +60 46 513.5 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +59 45 514 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +58 44 514.5 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +57 43 515 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +56 42 515.5 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +55 41 516 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +54 40 516.5 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +62 48 508.5 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +62 48 508.5 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +523.5 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +523.5 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +526.4688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +541.6094 229.4375 moveto +P$16 +540.9375 228.2656 moveto +P$17 +547.7031 228.5938 moveto +P$1k +554.1719 231.2031 moveto +P$1l +554.1719 230.2969 moveto +P$1m +559.1719 228.2656 moveto +P$2e +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +509.5 248 moveto +60 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +509.5 256 moveto +60 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +113 48 355.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +112 47 356.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +111 46 356.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +110 45 357.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +109 44 357.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +108 43 358.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +107 42 358.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +106 41 359.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +105 40 359.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +113 48 351.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +113 48 351.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +366.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +366.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +369.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +384.8594 353.4375 moveto +P$16 +384.1875 352.2656 moveto +P$17 +390.9531 352.5938 moveto +P$1k +397.4219 355.2031 moveto +P$1l +397.4219 354.2969 moveto +P$1m +402.4219 352.2656 moveto +P$2e +413.1094 353.2344 moveto +P$27 +411.9219 352.2656 moveto +P$28 +423.6875 355.4531 moveto +P$1y +427.4219 355.2031 moveto +P$1l +427.4219 354.2969 moveto +P$1m +432.1094 354.4531 moveto +P$2f +438.875 354.4531 moveto +P$1b +438.875 351.8906 moveto +P$1c +446.2031 355.4531 moveto +P$18 +442.5313 357.7344 moveto +P$19 +455.5 357.4688 moveto +P$1r +454.4219 357.1406 moveto +P$1s +461.6875 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +352.75 372 moveto +111 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +352.75 380 moveto +111 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +139 48 452.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +138 47 453.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +137 46 453.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +136 45 454.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +135 44 454.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +134 43 455.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +133 42 455.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +132 41 456.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +131 40 456.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +139 48 448.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +139 48 448.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +463.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +463.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +466.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +485.4844 476.9375 moveto +P$14 +489.8594 481.7188 moveto +P$1i +492.0156 481.2656 moveto +P$1j +495.9531 476.5938 moveto +P$1k +505.5 481.4688 moveto +P$1r +504.4219 481.1406 moveto +P$1s +512.2031 481.6563 moveto +P$2g +513.2813 484.2031 moveto P$2h -7367.1094 729.7188 moveto -P$15 -7369.2656 729.2656 moveto -P$16 -7373.2031 724.5938 moveto -P$1h -7377.125 726.4531 moveto -P$18 -7377.125 723.8906 moveto -P$19 -7382.6719 727.2031 moveto -P$1w -7382.6719 726.2969 moveto -P$1x -7393.5938 729.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7239 744 moveto -158 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7239 752 moveto -158 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -104 48 7437 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -103 47 7437.5 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -102 46 7438 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -101 45 7438.5 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -100 44 7439 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -99 43 7439.5 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -98 42 7440 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -97 41 7440.5 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -96 40 7441 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -104 48 7433 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -104 48 7433 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7448 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7448 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7450.9688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7463.0469 724.2656 moveto -P$1u -7476.3125 726.6406 moveto -P$17 -7484.75 729.4688 moveto -P$1s -7483.6719 729.1406 moveto -P$1t -7493.7344 724.9375 moveto +518.4219 479.2031 moveto P$1l -7497.6719 727.2031 moveto -P$1w -7497.6719 726.2969 moveto -P$1x -7508.5938 729.0469 moveto -P$1z -7512.2031 724.5938 moveto -P$1h -7521.75 729.4688 moveto -P$1s -7520.6719 729.1406 moveto -P$1t -7529.5938 726.4531 moveto -P$28 -7531.2031 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7434 744 moveto -102 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7434 752 moveto -102 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -140 48 7289 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -139 47 7289.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -138 46 7290 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -137 45 7290.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -136 44 7291 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -135 43 7291.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -134 42 7292 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -133 41 7292.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -132 40 7293 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -140 48 7285 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -140 48 7285 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7300 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7300 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7302.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7321.7344 476.9375 moveto -P$1l -7326.1094 481.7188 moveto -P$15 -7328.2656 481.2656 moveto -P$16 -7332.2031 476.5938 moveto -P$1h -7341.75 481.4688 moveto -P$1s -7340.6719 481.1406 moveto -P$1t -7348.4531 481.6563 moveto -P$2c -7349.5313 484.2031 moveto -P$2d -7354.6719 479.2031 moveto -P$1w -7354.6719 478.2969 moveto -P$1x -7363.9375 479.4531 moveto -P$1j -7367.8594 485.625 moveto -P$24 -7372.3594 477.2344 moveto -P$22 -7371.1719 476.2656 moveto -P$23 -7379.0156 482.4219 moveto -P$1d -7381.7344 478.2969 moveto -P$1e -7390.9375 479.4531 moveto -P$1j -7393.1719 484.0313 moveto -P$1y -7396.8438 481.7344 moveto -P$1p -7402.6719 479.2031 moveto -P$1w -7402.6719 478.2969 moveto -P$1x -7412.3125 478.6406 moveto -P$17 -7420.75 481.4688 moveto -P$1s -7419.6719 481.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7286 496 moveto -138 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7286 504 moveto -138 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -111 48 3079.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -110 47 3080.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -109 46 3080.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -108 45 3081.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -107 44 3081.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -106 43 3082.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -105 42 3082.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -104 41 3083.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -103 40 3083.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -111 48 3075.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -111 48 3075.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3090.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3090.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3093.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3112.4844 600.9375 moveto -P$1l -3116.4219 603.2031 moveto -P$1w -3116.4219 602.2969 moveto -P$1x -3127.3438 605.0469 moveto -P$1z -3130.9531 600.5938 moveto -P$1h -3140.5 605.4688 moveto -P$1s -3139.4219 605.1406 moveto -P$1t -3148.3438 605.0469 moveto -P$1z -3151.9531 600.5938 moveto -P$1h -3154.7188 600.2656 moveto -P$1i -3165.6094 609.625 moveto -P$24 -3169.9219 608.0313 moveto -P$1y -3173.5938 605.7344 moveto -P$1p -3182.5 605.4688 moveto -P$1s -3181.4219 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3076.75 620 moveto -109 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3076.75 628 moveto -109 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -67 48 4132.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -66 47 4133.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -65 46 4133.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -64 45 4134.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -63 44 4134.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -62 43 4135.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -61 42 4135.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -60 41 4136.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -59 40 4136.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -67 48 4128.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -67 48 4128.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4143.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4143.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4146.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4161.8594 601.4375 moveto -P$1b -4161.1875 600.2656 moveto -P$1c -4171.0625 602.6406 moveto -P$17 -4178.0625 602.6406 moveto -P$17 -4186.5 605.4688 moveto -P$1s -4185.4219 605.1406 moveto -P$1t -4189.9531 600.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4129.75 620 moveto -65 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4129.75 628 moveto -65 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -108 48 3268 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -107 47 3268.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -106 46 3269 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -105 45 3269.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -104 44 3270 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -103 43 3270.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -102 42 3271 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -101 41 3271.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -100 40 3272 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -108 48 3264 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -108 48 3264 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3279 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3279 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3281.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3297.1094 477.4375 moveto -P$1b -3296.4375 476.2656 moveto -P$1c -3302.0156 482.4219 moveto -P$1d -3304.7344 478.2969 moveto -P$1e -3311.2031 476.5938 moveto -P$1h -3320.5938 481.0469 moveto -P$29 -3325.6719 479.2031 moveto -P$1w -3325.6719 478.2969 moveto -P$1x -3334.9375 479.4531 moveto -P$1j -3336.125 478.4531 moveto -P$18 -3336.125 475.8906 moveto -P$19 -3344.5938 481.0469 moveto -P$1z -3351.4531 481.6563 moveto -P$2c -3352.5313 484.2031 moveto -P$2d -3355.1719 476.2656 moveto -P$2i -3362.125 478.4531 moveto -P$18 -3362.125 475.8906 moveto -P$19 -3366.2031 476.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3265 496 moveto -106 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3265 504 moveto -106 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -122 48 3901 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -121 47 3901.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -120 46 3902 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -119 45 3902.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -118 44 3903 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -117 43 3903.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -116 42 3904 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -115 41 3904.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -114 40 3905 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -122 48 3897 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -122 48 3897 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3912 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3912 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3914.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3930.1094 601.4375 moveto -P$1b -3929.4375 600.2656 moveto -P$1c -3935.0156 606.4219 moveto -P$1d -3937.7344 602.2969 moveto -P$1e -3944.2031 600.5938 moveto -P$1h -3953.5938 605.0469 moveto -P$29 -3958.6719 603.2031 moveto -P$1w -3958.6719 602.2969 moveto -P$1x -3967.9375 603.4531 moveto -P$1j -3969.125 602.4531 moveto -P$18 -3969.125 599.8906 moveto -P$19 -3977.5938 605.0469 moveto -P$1z -3984.4531 605.6563 moveto -P$2c -3985.5313 608.2031 moveto -P$2d -3993.4219 600.5469 moveto +518.4219 478.2969 moveto P$1m -3997.2031 600.5938 moveto -P$1h -4006.75 605.4688 moveto -P$1s -4005.6719 605.1406 moveto -P$1t -4010.1719 608.0313 moveto +527.6875 479.4531 moveto P$1y -4013.8438 605.7344 moveto -P$1p -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3898 620 moveto -120 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3898 628 moveto -120 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -199 48 2808.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -198 47 2809.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -197 46 2809.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -196 45 2810.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -195 44 2810.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -194 43 2811.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -193 42 2811.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -192 41 2812.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -191 40 2812.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -199 48 2804.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -199 48 2804.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2819.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2819.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2822.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2841.4844 476.9375 moveto -P$1l -2845.8594 481.7188 moveto -P$15 -2848.0156 481.2656 moveto -P$16 -2851.9531 476.5938 moveto -P$1h -2861.5 481.4688 moveto -P$1s -2860.4219 481.1406 moveto -P$1t -2868.2031 481.6563 moveto -P$2c -2869.2813 484.2031 moveto -P$2d -2874.4219 479.2031 moveto -P$1w -2874.4219 478.2969 moveto -P$1x -2883.6875 479.4531 moveto -P$1j -2887.6094 485.625 moveto -P$24 -2889.7188 476.2656 moveto -P$1i -2903.5 481.4688 moveto -P$1s -2902.4219 481.1406 moveto -P$1t -2910.9844 479.7188 moveto -P$21 -2917.9219 484.0313 moveto -P$1y -2921.5938 481.7344 moveto -P$1p -2924.875 475.8906 moveto -P$1k -2930.8594 481.7188 moveto -P$15 -2933.0156 481.2656 moveto -P$16 -2936.9531 476.5938 moveto -P$1h -2946.5 481.4688 moveto -P$1s -2945.4219 481.1406 moveto -P$1t -2948.9219 476.2656 moveto -P$2j -2961.8594 481.7188 moveto -P$15 -2964.0156 481.2656 moveto -P$16 -2967.9219 484.0313 moveto -P$1y -2971.5938 481.7344 moveto -P$1p -2975.9219 484.0313 moveto -P$1y -2979.5938 481.7344 moveto -P$1p -2982.875 478.4531 moveto -P$18 -2982.875 475.8906 moveto -P$19 -2991.3438 481.0469 moveto -P$1z -2998.2031 481.6563 moveto -P$2c -2999.2813 484.2031 moveto -P$2d -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2805.75 496 moveto -197 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2805.75 504 moveto -197 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -87 48 4669.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -86 47 4670.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -85 46 4670.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -84 45 4671.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -83 44 4671.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -82 43 4672.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -81 42 4672.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -80 41 4673.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -79 40 4673.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -87 48 4665.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -87 48 4665.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4680.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4680.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4683.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4702.4844 352.9375 moveto -P$1l -4703.9219 352.2656 moveto -P$2j -4719.1719 352.5469 moveto -P$1m -4720.7188 352.2656 moveto -P$1i -4731.8594 357.7188 moveto -P$15 -4734.0156 357.2656 moveto -P$16 -4741.0625 354.6406 moveto -P$17 -4743.8438 351.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4666.75 372 moveto -85 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4666.75 380 moveto -85 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -116 48 4421.5 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -115 47 4422 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -114 46 4422.5 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -113 45 4423 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -112 44 4423.5 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -111 43 4424 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -110 42 4424.5 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -109 41 4425 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -108 40 4425.5 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -116 48 4417.5 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -116 48 4417.5 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4432.5 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4432.5 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4435.4688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4454.2344 476.9375 moveto -P$1l -4455.6719 476.2656 moveto -P$2j -4470.9219 476.5469 moveto -P$1m -4472.4688 476.2656 moveto -P$1i -4483.6094 481.7188 moveto -P$15 -4485.7656 481.2656 moveto -P$16 -4492.8125 478.6406 moveto -P$17 -4495.5938 475.8906 moveto -P$2k -4501.4688 476.2656 moveto -P$1i -4512.3594 485.625 moveto -P$24 -4516.6719 484.0313 moveto -P$1y -4520.3438 481.7344 moveto -P$1p -4529.25 481.4688 moveto -P$1s -4528.1719 481.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4418.5 496 moveto -114 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4418.5 504 moveto -114 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -124 48 4510.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -123 47 4511 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -122 46 4511.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -121 45 4512 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -120 44 4512.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -119 43 4513 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -118 42 4513.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -117 41 4514 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -116 40 4514.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -124 48 4506.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -124 48 4506.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4521.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4521.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4524.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4543.2344 352.9375 moveto -P$1l -4547.1719 355.2031 moveto -P$1w -4547.1719 354.2969 moveto -P$1x -4558.0938 357.0469 moveto -P$1z -4561.7031 352.5938 moveto -P$1h -4571.25 357.4688 moveto -P$1s -4570.1719 357.1406 moveto -P$1t -4579.0938 357.0469 moveto -P$1z -4582.7031 352.5938 moveto -P$1h -4593.2344 352.9375 moveto -P$1l -4600.25 357.4688 moveto -P$1s -4599.1719 357.1406 moveto -P$1t -4608.0938 357.0469 moveto -P$1z -4611.7031 352.5938 moveto -P$1h -4621.25 357.4688 moveto -P$1s -4620.1719 357.1406 moveto -P$1t -4627.4375 355.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4507.5 372 moveto -122 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4507.5 380 moveto -122 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -125 48 4783.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -124 47 4784.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -123 46 4784.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -122 45 4785.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -121 44 4785.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -120 43 4786.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -119 42 4786.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -118 41 4787.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -117 40 4787.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -125 48 4779.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -125 48 4779.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4794.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4794.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4797.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4816.4844 600.9375 moveto -P$1l -4820.4219 603.2031 moveto -P$1w -4820.4219 602.2969 moveto -P$1x -4831.3438 605.0469 moveto -P$1z -4834.9531 600.5938 moveto -P$1h -4844.5 605.4688 moveto -P$1s -4843.4219 605.1406 moveto -P$1t -4852.3438 605.0469 moveto -P$1z -4855.9531 600.5938 moveto -P$1h -4861.1094 604.8438 moveto -P$12 -4861.1094 601.2344 moveto -P$13 -4859.9219 600.2656 moveto -P$14 -4867.7656 606.4219 moveto -P$1d -4870.4844 602.2969 moveto -P$1e -4881.3438 605.0469 moveto -P$1z -4888.2031 603.4531 moveto -P$1f -4884.5313 605.7344 moveto -P$1g -4891.875 599.8906 moveto -P$1k -4900.5 605.4688 moveto -P$1s -4899.4219 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4780.75 620 moveto -123 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4780.75 628 moveto -123 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -109 48 4799.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -108 47 4800.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -107 46 4800.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -106 45 4801.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -105 44 4801.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -104 43 4802.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -103 42 4802.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -102 41 4803.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -101 40 4803.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -109 48 4795.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -109 48 4795.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4810.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4810.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4813.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4832.4844 476.9375 moveto -P$1l -4836.4219 479.2031 moveto -P$1w -4836.4219 478.2969 moveto -P$1x -4847.3438 481.0469 moveto -P$1z -4850.9531 476.5938 moveto -P$1h -4860.5 481.4688 moveto -P$1s -4859.4219 481.1406 moveto -P$1t -4868.3438 481.0469 moveto -P$1z -4871.9531 476.5938 moveto -P$1h -4875.9219 476.2656 moveto -P$2e -4879.9531 476.5938 moveto -P$1h -4889.5 481.4688 moveto -P$1s -4888.4219 481.1406 moveto -P$1t -4896.9844 479.7188 moveto -P$21 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4796.75 496 moveto -107 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4796.75 504 moveto -107 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -114 48 4634 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -113 47 4634.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -112 46 4635 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -111 45 4635.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -110 44 4636 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -109 43 4636.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -108 42 4637 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -107 41 4637.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -106 40 4638 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -114 48 4630 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -114 48 4630 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4645 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4645 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4647.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4666.7344 600.9375 moveto -P$1l -4670.6719 603.2031 moveto -P$1w -4670.6719 602.2969 moveto -P$1x -4681.5938 605.0469 moveto -P$1z -4685.2031 600.5938 moveto -P$1h -4694.75 605.4688 moveto -P$1s -4693.6719 605.1406 moveto -P$1t -4702.5938 605.0469 moveto -P$1z -4706.2031 600.5938 moveto -P$1h -4711.3594 601.2344 moveto -P$22 -4710.1719 600.2656 moveto -P$23 -4721.1094 605.7188 moveto -P$15 -4723.2656 605.2656 moveto -P$16 -4730.4531 605.6563 moveto -P$2c -4731.5313 608.2031 moveto -P$2d -4739.75 605.4688 moveto -P$1s -4738.6719 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4631 620 moveto -112 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4631 628 moveto -112 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -129 48 4313.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -128 47 4314.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -127 46 4314.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -126 45 4315.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -125 44 4315.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -124 43 4316.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -123 42 4316.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -122 41 4317.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -121 40 4317.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -129 48 4309.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -129 48 4309.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4324.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4324.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4327.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4346.4844 724.9375 moveto -P$1l -4350.4219 727.2031 moveto -P$1w -4350.4219 726.2969 moveto -P$1x -4361.3438 729.0469 moveto -P$1z -4364.9531 724.5938 moveto -P$1h -4374.5 729.4688 moveto -P$1s -4373.4219 729.1406 moveto -P$1t -4382.3438 729.0469 moveto -P$1z -4385.9531 724.5938 moveto -P$1h -4395.1719 724.5469 moveto -P$1m -4403.5 729.4688 moveto -P$1s -4402.4219 729.1406 moveto -P$1t -4410.6094 726.7031 moveto -P$1a -4413.9531 724.5938 moveto -P$1h -4417.875 726.4531 moveto -P$18 -4417.875 723.8906 moveto -P$19 -4423.4219 727.2031 moveto -P$1w -4423.4219 726.2969 moveto -P$1x -4434.3438 729.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4310.75 744 moveto -127 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4310.75 752 moveto -127 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -222 48 2899.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -221 47 2900 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -220 46 2900.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -219 45 2901 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -218 44 2901.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -217 43 2902 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -216 42 2902.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -215 41 2903 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -214 40 2903.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -222 48 2895.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -222 48 2895.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2910.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2910.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2913.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2932.2344 352.9375 moveto -P$1l -2936.1719 355.2031 moveto -P$1w -2936.1719 354.2969 moveto -P$1x -2947.0938 357.0469 moveto -P$1z -2950.7031 352.5938 moveto -P$1h -2960.25 357.4688 moveto -P$1s -2959.1719 357.1406 moveto -P$1t -2968.0938 357.0469 moveto -P$1z -2971.7031 352.5938 moveto -P$1h -2974.4688 352.2656 moveto -P$1i -2985.3594 361.625 moveto -P$24 -2989.6719 360.0313 moveto -P$1y -2993.3438 357.7344 moveto -P$1p -3002.25 357.4688 moveto -P$1s -3001.1719 357.1406 moveto -P$1t -3004.6719 352.2656 moveto -P$2g -3010.625 354.4531 moveto -P$18 -3010.625 351.8906 moveto -P$19 -3016.9531 351.8906 moveto -P$2l -3023.25 357.4688 moveto -P$1s -3022.1719 357.1406 moveto -P$1t -3030.3594 354.7031 moveto -P$1a -3035.3594 361.625 moveto -P$24 -3043.3594 354.7031 moveto -P$1a -3045.625 351.8906 moveto -P$1k -3054.25 357.4688 moveto -P$1s -3053.1719 357.1406 moveto -P$1t -3057.8594 353.2344 moveto -P$2m -3056.6719 352.2656 moveto -P$2n -3071.25 357.4688 moveto -P$1s -3070.1719 357.1406 moveto -P$1t -3076.9531 351.8906 moveto -P$2l -3077.625 354.4531 moveto -P$18 -3077.625 351.8906 moveto -P$19 -3086.0938 357.0469 moveto -P$1z -3088.625 354.4531 moveto -P$18 -3088.625 351.8906 moveto -P$19 -3092.7031 352.5938 moveto -P$1h -3096.625 354.4531 moveto -P$18 -3096.625 351.8906 moveto -P$19 -3102.1719 355.2031 moveto -P$1w -3102.1719 354.2969 moveto -P$1x -3113.0938 357.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2896.5 372 moveto -220 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2896.5 380 moveto -220 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -224 48 3156.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -223 47 3157 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -222 46 3157.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -221 45 3158 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -220 44 3158.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -219 43 3159 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -218 42 3159.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -217 41 3160 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -216 40 3160.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -224 48 3152.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -224 48 3152.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3167.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3167.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3170.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3189.2344 352.9375 moveto -P$1l -3193.1719 355.2031 moveto -P$1w -3193.1719 354.2969 moveto -P$1x -3204.0938 357.0469 moveto -P$1z -3207.7031 352.5938 moveto -P$1h -3217.25 357.4688 moveto -P$1s -3216.1719 357.1406 moveto -P$1t -3225.0938 357.0469 moveto -P$1z -3228.7031 352.5938 moveto -P$1h -3231.4688 352.2656 moveto -P$1i -3242.3594 361.625 moveto -P$24 -3246.6719 360.0313 moveto -P$1y -3250.3438 357.7344 moveto -P$1p -3259.25 357.4688 moveto -P$1s -3258.1719 357.1406 moveto -P$1t -3260.9063 352.2656 moveto -P$2o -3275.1719 355.2031 moveto -P$1w -3275.1719 354.2969 moveto -P$1x -3284.4375 355.4531 moveto -P$1j -3285.5938 351.8906 moveto -P$2k -3295.9531 351.8906 moveto -P$2l -3296.625 351.8906 moveto -P$1k -3302.1719 355.2031 moveto -P$1w -3302.1719 354.2969 moveto -P$1x -3307 354.4531 moveto -P$2p -3315.4688 352.2656 moveto -P$1i -3329.25 357.4688 moveto -P$1s -3328.1719 357.1406 moveto -P$1t -3336.7344 355.7188 moveto -P$21 -3343.6719 360.0313 moveto -P$1y -3347.3438 357.7344 moveto -P$1p -3350.625 351.8906 moveto -P$1k -3356.6094 357.7188 moveto -P$15 -3358.7656 357.2656 moveto -P$16 -3362.7031 352.5938 moveto -P$1h -3372.25 357.4688 moveto -P$1s -3371.1719 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3153.5 372 moveto -222 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3153.5 380 moveto -222 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -88 48 4478.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -87 47 4479 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -86 46 4479.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -85 45 4480 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -84 44 4480.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -83 43 4481 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -82 42 4481.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -81 41 4482 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -80 40 4482.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -88 48 4474.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -88 48 4474.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4489.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4489.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4492.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4504.6719 724.2656 moveto -P$2q -4511.625 726.4531 moveto -P$18 -4511.625 723.8906 moveto -P$19 -4514.625 723.8906 moveto -P$1k -4523.25 729.4688 moveto -P$1s -4522.1719 729.1406 moveto -P$1t -4528.6094 725.4375 moveto -P$1b -4527.9375 724.2656 moveto -P$1c -4537.8125 726.6406 moveto -P$17 -4544.8125 726.6406 moveto -P$17 -4553.25 729.4688 moveto -P$1s -4552.1719 729.1406 moveto -P$1t -4556.7031 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4475.5 744 moveto -86 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4475.5 752 moveto -86 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -71 48 3967.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -70 47 3968.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -69 46 3968.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -68 45 3969.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -67 44 3969.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -66 43 3970.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -65 42 3970.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -64 41 3971.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -63 40 3971.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -71 48 3963.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -71 48 3963.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3978.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3978.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3981.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3993.9219 864.2656 moveto -P$2q -4003.4219 867.2031 moveto -P$1w -4003.4219 866.2969 moveto -P$1x -4008.875 863.8906 moveto -P$1k -4016.2031 867.4531 moveto -P$1f -4012.5313 869.7344 moveto -P$1g -4025.5 869.4688 moveto -P$1s -4024.4219 869.1406 moveto -P$1t -4031.6875 867.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3964.75 884 moveto -69 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3964.75 892 moveto -69 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -105 48 4135.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -104 47 4136.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -103 46 4136.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -102 45 4137.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -101 44 4137.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -100 43 4138.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -99 42 4138.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -98 41 4139.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -97 40 4139.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -105 48 4131.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -105 48 4131.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4146.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4146.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4149.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4161.9219 724.2656 moveto -P$2e -4169.9844 727.7188 moveto -P$21 -4178.8594 729.7188 moveto -P$15 -4181.0156 729.2656 moveto -P$16 -4188.2031 729.6563 moveto -P$2c -4189.2813 732.2031 moveto -P$2d -4197.5 729.4688 moveto -P$1s -4196.4219 729.1406 moveto -P$1t -4202.8594 725.4375 moveto -P$1b -4202.1875 724.2656 moveto -P$1c -4212.0625 726.6406 moveto -P$17 -4219.0625 726.6406 moveto -P$17 -4227.5 729.4688 moveto -P$1s -4226.4219 729.1406 moveto -P$1t -4230.9531 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4132.75 744 moveto -103 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4132.75 752 moveto -103 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -131 48 4303.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -130 47 4304.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -129 46 4304.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -128 45 4305.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -127 44 4305.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -126 43 4306.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -125 42 4306.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -124 41 4307.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -123 40 4307.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -131 48 4299.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -131 48 4299.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4314.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4314.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4317.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4329.9219 864.2656 moveto -P$2e -4337.9844 867.7188 moveto -P$21 -4346.8594 869.7188 moveto -P$15 -4349.0156 869.2656 moveto -P$16 -4356.2031 869.6563 moveto -P$2c -4357.2813 872.2031 moveto -P$2d -4365.5 869.4688 moveto -P$1s -4364.4219 869.1406 moveto -P$1t -4367.9219 864.2656 moveto -P$2j -4377.875 866.4531 moveto -P$18 -4377.875 863.8906 moveto -P$19 -4385.9844 867.7188 moveto -P$21 -4397.5 869.4688 moveto -P$1s -4396.4219 869.1406 moveto -P$1t -4398.7188 864.2656 moveto -P$1i -4409.6094 873.625 moveto -P$24 -4413.9219 872.0313 moveto -P$1y -4417.5938 869.7344 moveto -P$1p -4426.5 869.4688 moveto -P$1s -4425.4219 869.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4300.75 884 moveto -129 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4300.75 892 moveto -129 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -170 48 3848 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -169 47 3848.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -168 46 3849 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -167 45 3849.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -166 44 3850 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -165 43 3850.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -164 42 3851 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -163 41 3851.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -162 40 3852 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -170 48 3844 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -170 48 3844 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3859 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3859 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3861.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3874.1719 352.2656 moveto -P$2e -3878.2031 352.5938 moveto -P$1h -3887.75 357.4688 moveto -P$1s -3886.6719 357.1406 moveto -P$1t -3895.2344 355.7188 moveto -P$21 -3899.9688 352.2656 moveto -P$1i -3913.75 357.4688 moveto -P$1s -3912.6719 357.1406 moveto -P$1t -3921.2344 355.7188 moveto -P$21 -3928.1719 360.0313 moveto -P$1y -3931.8438 357.7344 moveto -P$1p -3935.125 351.8906 moveto -P$1k -3941.1094 357.7188 moveto -P$15 -3943.2656 357.2656 moveto -P$16 -3947.2031 352.5938 moveto -P$1h -3956.75 357.4688 moveto -P$1s -3955.6719 357.1406 moveto -P$1t -3959.1719 352.2656 moveto -P$2j -3972.1094 357.7188 moveto -P$15 -3974.2656 357.2656 moveto -P$16 -3978.1719 360.0313 moveto -P$1y -3981.8438 357.7344 moveto -P$1p -3986.1719 360.0313 moveto -P$1y -3989.8438 357.7344 moveto -P$1p -3993.125 354.4531 moveto -P$18 -3993.125 351.8906 moveto -P$19 -4001.5938 357.0469 moveto -P$1z -4008.4531 357.6563 moveto -P$2c -4009.5313 360.2031 moveto -P$2d -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3845 372 moveto -168 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3845 380 moveto -168 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -84 48 4825.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -83 47 4826 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -82 46 4826.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -81 45 4827 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -80 44 4827.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -79 43 4828 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -78 42 4828.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -77 41 4829 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -76 40 4829.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -84 48 4821.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -84 48 4821.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4836.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4836.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4839.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4851.6719 724.2656 moveto -P$2g -4857.625 726.4531 moveto -P$18 -4857.625 723.8906 moveto -P$19 -4863.9531 723.8906 moveto -P$2l -4870.25 729.4688 moveto -P$1s -4869.1719 729.1406 moveto -P$1t -4877.3594 726.7031 moveto -P$1a -4882.3594 733.625 moveto -P$24 -4890.3594 726.7031 moveto -P$1a -4892.625 723.8906 moveto -P$1k -4901.25 729.4688 moveto -P$1s -4900.1719 729.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4822.5 744 moveto -82 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4822.5 752 moveto -82 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -143 48 4659.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -142 47 4660.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -141 46 4660.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -140 45 4661.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -139 44 4661.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -138 43 4662.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -137 42 4662.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -136 41 4663.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -135 40 4663.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -143 48 4655.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -143 48 4655.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4670.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4670.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4673.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4685.9219 864.2656 moveto -P$2g -4691.875 866.4531 moveto -P$18 -4691.875 863.8906 moveto -P$19 -4698.2031 863.8906 moveto -P$2l -4704.5 869.4688 moveto -P$1s -4703.4219 869.1406 moveto -P$1t -4711.6094 866.7031 moveto -P$1a -4716.6094 873.625 moveto -P$24 -4724.6094 866.7031 moveto -P$1a -4726.875 863.8906 moveto -P$1k -4735.5 869.4688 moveto -P$1s -4734.4219 869.1406 moveto -P$1t -4739.1094 865.2344 moveto -P$2m -4737.9219 864.2656 moveto -P$2n -4752.5 869.4688 moveto -P$1s -4751.4219 869.1406 moveto -P$1t -4758.2031 863.8906 moveto -P$2l -4758.875 866.4531 moveto -P$18 -4758.875 863.8906 moveto -P$19 -4767.3438 869.0469 moveto -P$1z -4769.875 866.4531 moveto -P$18 -4769.875 863.8906 moveto -P$19 -4773.9531 864.5938 moveto -P$1h -4777.875 866.4531 moveto -P$18 -4777.875 863.8906 moveto -P$19 -4783.4219 867.2031 moveto -P$1w -4783.4219 866.2969 moveto -P$1x -4794.3438 869.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4656.75 884 moveto -141 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4656.75 892 moveto -141 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -129 48 4469.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -128 47 4470.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -127 46 4470.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -126 45 4471.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -125 44 4471.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -124 43 4472.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -123 42 4472.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -122 41 4473.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -121 40 4473.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -129 48 4465.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -129 48 4465.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4480.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4480.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4483.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4495.9219 600.2656 moveto -P$2g -4501.875 602.4531 moveto -P$18 -4501.875 599.8906 moveto -P$19 -4508.2031 599.8906 moveto -P$2l -4514.5 605.4688 moveto -P$1s -4513.4219 605.1406 moveto -P$1t -4521.6094 602.7031 moveto -P$1a -4526.6094 609.625 moveto -P$24 -4534.6094 602.7031 moveto -P$1a -4536.875 599.8906 moveto -P$1k -4545.5 605.4688 moveto -P$1s -4544.4219 605.1406 moveto -P$1t -4553.1719 600.5469 moveto -P$1m -4561.5 605.4688 moveto -P$1s -4560.4219 605.1406 moveto -P$1t -4567.6875 603.4531 moveto -P$1j -4568.1094 602.4531 moveto -P$2b -4574.875 602.4531 moveto -P$18 -4574.875 599.8906 moveto -P$19 -4582.6094 602.7031 moveto -P$1a -4590.5 605.4688 moveto -P$1s -4589.4219 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4466.75 620 moveto -127 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4466.75 628 moveto -127 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -56 48 3415.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -55 47 3416 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -54 46 3416.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -53 45 3417 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -52 44 3417.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -51 43 3418 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -50 42 3418.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -49 41 3419 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -48 40 3419.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -56 48 3411.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -56 48 3411.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3426.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3426.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3429.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3441.6719 352.2656 moveto -P$2g -3447.625 354.4531 moveto -P$18 -3447.625 351.8906 moveto -P$19 -3456.0938 357.0469 moveto -P$1z -3458.5938 351.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3412.5 372 moveto -54 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3412.5 380 moveto -54 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -93 48 4600.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -92 47 4601.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -91 46 4601.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -90 45 4602.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -89 44 4602.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -88 43 4603.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -87 42 4603.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -86 41 4604.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -85 40 4604.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -93 48 4596.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -93 48 4596.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4611.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4611.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4614.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4626.9219 724.2656 moveto -P$2j -4636.875 726.4531 moveto -P$18 -4636.875 723.8906 moveto -P$19 -4644.9844 727.7188 moveto -P$21 -4656.5 729.4688 moveto -P$1s -4655.4219 729.1406 moveto -P$1t -4657.7188 724.2656 moveto -P$1i -4668.6094 733.625 moveto -P$24 -4672.9219 732.0313 moveto -P$1y -4676.5938 729.7344 moveto -P$1p -4685.5 729.4688 moveto -P$1s -4684.4219 729.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4597.75 744 moveto -91 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4597.75 752 moveto -91 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -154 48 4470 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -153 47 4470.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -152 46 4471 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -151 45 4471.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -150 44 4472 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -149 43 4472.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -148 42 4473 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -147 41 4473.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -146 40 4474 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -154 48 4466 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -154 48 4466 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4481 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4481 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4483.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4496.1719 864.2656 moveto -P$2j -4506.125 866.4531 moveto -P$18 -4506.125 863.8906 moveto -P$19 -4514.2344 867.7188 moveto -P$21 -4525.75 869.4688 moveto -P$1s -4524.6719 869.1406 moveto -P$1t -4526.9688 864.2656 moveto -P$1i -4537.8594 873.625 moveto -P$24 -4542.1719 872.0313 moveto -P$1y -4545.8438 869.7344 moveto -P$1p -4554.75 869.4688 moveto -P$1s -4553.6719 869.1406 moveto -P$1t -4557.1719 864.2656 moveto -P$20 -4570.5938 866.4531 moveto -P$28 -4572.2031 864.5938 moveto -P$1h -4581.75 869.4688 moveto -P$1s -4580.6719 869.1406 moveto -P$1t -4589.5938 869.0469 moveto -P$1z -4596.3125 866.6406 moveto -P$17 -4599.125 866.4531 moveto -P$18 -4599.125 863.8906 moveto -P$19 -4604.6719 867.2031 moveto -P$1w -4604.6719 866.2969 moveto -P$1x -4615.5938 869.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4467 884 moveto -152 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4467 892 moveto -152 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -134 48 3679 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -133 47 3679.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -132 46 3680 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -131 45 3680.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -130 44 3681 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -129 43 3681.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -128 42 3682 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -127 41 3682.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -126 40 3683 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -134 48 3675 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -134 48 3675 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3690 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3690 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3692.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3705.1719 352.2656 moveto -P$2j -3715.125 354.4531 moveto -P$18 -3715.125 351.8906 moveto -P$19 -3723.2344 355.7188 moveto -P$21 -3734.75 357.4688 moveto -P$1s -3733.6719 357.1406 moveto -P$1t -3735.9688 352.2656 moveto -P$1i -3746.8594 361.625 moveto -P$24 -3751.1719 360.0313 moveto -P$1y -3754.8438 357.7344 moveto -P$1p -3763.75 357.4688 moveto -P$1s -3762.6719 357.1406 moveto -P$1t -3771.4219 352.5469 moveto -P$1m -3775.2031 352.5938 moveto -P$1h -3782.1094 357.7188 moveto -P$15 -3784.2656 357.2656 moveto -P$16 -3788.2031 352.5938 moveto -P$1h -3792.0156 358.4219 moveto -P$1d -3794.7344 354.2969 moveto -P$1e -3804.3125 354.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3676 372 moveto -132 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3676 380 moveto -132 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -71 48 4837.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -70 47 4838.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -69 46 4838.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -68 45 4839.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -67 44 4839.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -66 43 4840.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -65 42 4840.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -64 41 4841.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -63 40 4841.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -71 48 4833.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -71 48 4833.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4848.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4848.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4851.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4865.1094 865.2344 moveto -P$22 -4863.9219 864.2656 moveto -P$23 -4877.3438 869.0469 moveto -P$29 -4882.8594 869.7188 moveto -P$15 -4885.0156 869.2656 moveto -P$16 -4892.0625 866.6406 moveto -P$17 -4900.5 869.4688 moveto -P$1s -4899.4219 869.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4834.75 884 moveto -69 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4834.75 892 moveto -69 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -130 48 4779 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -129 47 4779.5 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -128 46 4780 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -127 45 4780.5 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -126 44 4781 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -125 43 4781.5 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -124 42 4782 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -123 41 4782.5 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -122 40 4783 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -130 48 4775 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -130 48 4775 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4790 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4790 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4792.9688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4806.3594 1005.2344 moveto -P$22 -4805.1719 1004.2656 moveto -P$23 -4818.5938 1009.0469 moveto -P$29 -4824.1094 1009.7188 moveto -P$15 -4826.2656 1009.2656 moveto -P$16 -4833.3125 1006.6406 moveto -P$17 -4841.75 1009.4688 moveto -P$1s -4840.6719 1009.1406 moveto -P$1t -4845.3594 1005.2344 moveto -P$2m -4844.1719 1004.2656 moveto -P$2n -4858.75 1009.4688 moveto -P$1s -4857.6719 1009.1406 moveto -P$1t -4864.4531 1003.8906 moveto -P$2l -4865.125 1006.4531 moveto -P$18 -4865.125 1003.8906 moveto -P$19 -4873.5938 1009.0469 moveto -P$1z -4876.125 1006.4531 moveto -P$18 -4876.125 1003.8906 moveto -P$19 -4880.2031 1004.5938 moveto -P$1h -4884.125 1006.4531 moveto -P$18 -4884.125 1003.8906 moveto -P$19 -4889.6719 1007.2031 moveto -P$1w -4889.6719 1006.2969 moveto -P$1x -4900.5938 1009.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4776 1024 moveto -128 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4776 1032 moveto -128 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -105 48 3411.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -104 47 3412.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -103 46 3412.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -102 45 3413.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -101 44 3413.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -100 43 3414.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -99 42 3414.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -98 41 3415.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -97 40 3415.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -105 48 3407.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -105 48 3407.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3422.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3422.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3425.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3439.1094 477.2344 moveto -P$22 -3437.9219 476.2656 moveto -P$23 -3445.7656 482.4219 moveto -P$1d -3448.4844 478.2969 moveto -P$1e -3458.5938 481.7344 moveto -P$1p -3454.9219 479.4531 moveto +531.6094 485.625 moveto P$1q -3461.875 475.8906 moveto -P$1k -3464.875 478.4531 moveto -P$18 -3464.875 475.8906 moveto -P$19 -3472.0625 478.6406 moveto -P$17 -3480.3438 481.0469 moveto -P$29 -3482.9219 476.2656 moveto -P$2g -3491.4219 479.2031 moveto -P$1w -3491.4219 478.2969 moveto -P$1x -3501.6094 478.7031 moveto -P$1a -3503.8438 475.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3408.75 496 moveto -103 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3408.75 504 moveto -103 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -140 48 3552 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -139 47 3552.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -138 46 3553 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -137 45 3553.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -136 44 3554 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -135 43 3554.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -134 42 3555 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -133 41 3555.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -132 40 3556 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -140 48 3548 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -140 48 3548 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3563 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3563 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3565.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3579.3594 477.2344 moveto -P$22 -3578.1719 476.2656 moveto -P$23 -3588.6719 479.2031 moveto -P$1w -3588.6719 478.2969 moveto -P$1x -3598.3125 478.6406 moveto -P$17 -3602.2031 476.5938 moveto -P$1h -3612.7344 476.9375 moveto +536.1094 477.2344 moveto +P$27 +534.9219 476.2656 moveto +P$28 +546.6875 479.4531 moveto +P$1y +550.4219 479.2031 moveto P$1l -3616.6719 479.2031 moveto -P$1w -3616.6719 478.2969 moveto -P$1x -3627.5938 481.0469 moveto -P$1z -3629.3594 478.4531 moveto -P$2b -3641.75 481.4688 moveto -P$1s -3640.6719 481.1406 moveto -P$1t -3647.9375 479.4531 moveto -P$1j -3650.2031 476.5938 moveto -P$1h -3654.1719 476.2656 moveto +550.4219 478.2969 moveto +P$1m +555.1094 478.4531 moveto P$2f -3661.9688 476.2656 moveto -P$1i -3670.1719 476.2656 moveto -P$2j -3680.1719 476.2656 moveto -P$2g -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3549 496 moveto -138 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3549 504 moveto -138 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -133 48 3727.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -132 47 3728.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -131 46 3728.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -130 45 3729.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -129 44 3729.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -128 43 3730.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -127 42 3730.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -126 41 3731.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -125 40 3731.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -133 48 3723.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -133 48 3723.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3738.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3738.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3741.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3755.1094 477.2344 moveto -P$22 -3753.9219 476.2656 moveto -P$23 -3765.6875 479.4531 moveto -P$1j -3772.5 481.4688 moveto -P$1s -3771.4219 481.1406 moveto -P$1t -3781.4844 476.9375 moveto -P$1l -3785.4219 479.2031 moveto -P$1w -3785.4219 478.2969 moveto -P$1x -3796.3438 481.0469 moveto -P$1z -3798.1094 478.4531 moveto -P$2b -3810.5 481.4688 moveto -P$1s -3809.4219 481.1406 moveto -P$1t -3816.6875 479.4531 moveto -P$1j -3818.9531 476.5938 moveto -P$1h -3822.9219 476.2656 moveto -P$2f -3830.7188 476.2656 moveto -P$1i -3838.9219 476.2656 moveto -P$2j -3848.9219 476.2656 moveto -P$2g -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3724.75 496 moveto -131 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3724.75 504 moveto -131 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -117 48 4791.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -116 47 4792.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -115 46 4792.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -114 45 4793.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -113 44 4793.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -112 43 4794.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -111 42 4794.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -110 41 4795.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -109 40 4795.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -117 48 4787.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -117 48 4787.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4802.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4802.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4805.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4819.1094 353.2344 moveto -P$22 -4817.9219 352.2656 moveto -P$23 -4825.7656 358.4219 moveto -P$1d -4828.4844 354.2969 moveto -P$1e -4838.5938 357.7344 moveto -P$1p -4834.9219 355.4531 moveto -P$1q -4841.875 351.8906 moveto -P$1k -4844.875 354.4531 moveto -P$18 -4844.875 351.8906 moveto -P$19 -4852.0625 354.6406 moveto -P$17 -4860.3438 357.0469 moveto -P$29 -4868.5 357.4688 moveto -P$1s -4867.4219 357.1406 moveto -P$1t -4875.2031 355.4531 moveto -P$1f -4871.5313 357.7344 moveto -P$1g -4878.9219 352.2656 moveto -P$2g -4884.875 354.4531 moveto -P$18 -4884.875 351.8906 moveto -P$19 -4893.3438 357.0469 moveto -P$1z -4895.8438 351.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4788.75 372 moveto -115 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4788.75 380 moveto -115 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -138 48 3506 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -137 47 3506.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -136 46 3507 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -135 45 3507.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -134 44 3508 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -133 43 3508.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -132 42 3509 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -131 41 3509.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -130 40 3510 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -138 48 3502 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -138 48 3502 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3517 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3517 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3519.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3536.3281 356.9063 moveto -P$26 -3533.3594 353.2344 moveto -P$27 -3545.75 357.4688 moveto -P$1s -3544.6719 357.1406 moveto -P$1t -3548.125 351.8906 moveto -P$1k -3554.1094 357.7188 moveto -P$15 -3556.2656 357.2656 moveto -P$16 -3560.2031 352.5938 moveto -P$1h -3564.125 354.4531 moveto -P$18 -3564.125 351.8906 moveto -P$19 -3569.6719 355.2031 moveto -P$1w -3569.6719 354.2969 moveto -P$1x -3580.5938 357.0469 moveto -P$1z -3586.1094 353.4375 moveto +561.875 478.4531 moveto P$1b -3585.4375 352.2656 moveto +561.875 475.8906 moveto P$1c -3592.2031 352.5938 moveto -P$1h -3597.2031 352.5938 moveto -P$1h -3604.9375 355.4531 moveto -P$1j -3606.125 354.4531 moveto +569.2031 479.4531 moveto P$18 -3606.125 351.8906 moveto +565.5313 481.7344 moveto P$19 -3613.8438 357.7344 moveto -P$1p -3610.1719 355.4531 moveto -P$1q -3617.0156 358.4219 moveto -P$1d -3619.7344 354.2969 moveto -P$1e -3626.2031 352.5938 moveto -P$1h -3635.75 357.4688 moveto -P$1s -3634.6719 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3503 372 moveto -136 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3503 380 moveto -136 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -120 48 4151.5 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -119 47 4152 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -118 46 4152.5 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -117 45 4153 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -116 44 4153.5 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -115 43 4154 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -114 42 4154.5 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -113 41 4155 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -112 40 4155.5 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -120 48 4147.5 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -120 48 4147.5 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4162.5 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4162.5 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4165.4688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4181.8281 480.9063 moveto -P$26 -4178.8594 477.2344 moveto -P$27 -4191.25 481.4688 moveto -P$1s -4190.1719 481.1406 moveto -P$1t -4197.8125 478.6406 moveto -P$17 -4203.1719 479.2031 moveto -P$1w -4203.1719 478.2969 moveto -P$1x -4208.5156 482.4219 moveto -P$1d -4211.2344 478.2969 moveto -P$1e -4220.4375 479.4531 moveto -P$1j -4226.3594 478.7031 moveto -P$1a -4234.25 481.4688 moveto -P$1s -4233.1719 481.1406 moveto -P$1t -4235.4688 476.2656 moveto -P$1i -4246.3594 485.625 moveto -P$24 -4250.6719 484.0313 moveto -P$1y -4254.3438 481.7344 moveto -P$1p -4263.25 481.4688 moveto -P$1s -4262.1719 481.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4148.5 496 moveto -118 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4148.5 504 moveto -118 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -91 48 4165.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -90 47 4166.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -89 46 4166.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -88 45 4167.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -87 44 4167.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -86 43 4168.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -85 42 4168.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -84 41 4169.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -83 40 4169.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -91 48 4161.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -91 48 4161.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4176.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4176.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4179.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4196.0781 356.9063 moveto -P$26 -4193.1094 353.2344 moveto -P$27 -4205.5 357.4688 moveto -P$1s -4204.4219 357.1406 moveto -P$1t -4212.0625 354.6406 moveto -P$17 -4217.4219 355.2031 moveto -P$1w -4217.4219 354.2969 moveto -P$1x -4222.7656 358.4219 moveto -P$1d -4225.4844 354.2969 moveto -P$1e -4234.6875 355.4531 moveto -P$1j -4240.6094 354.7031 moveto -P$1a -4248.5 357.4688 moveto -P$1s -4247.4219 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4162.75 372 moveto -89 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4162.75 380 moveto -89 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -144 48 3896 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -143 47 3896.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -142 46 3897 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -141 45 3897.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -140 44 3898 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -139 43 3898.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -138 42 3899 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -137 41 3899.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -136 40 3900 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -144 48 3892 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -144 48 3892 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3907 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3907 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3909.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3926.3281 480.9063 moveto -P$26 -3923.3594 477.2344 moveto -P$27 -3935.75 481.4688 moveto -P$1s -3934.6719 481.1406 moveto -P$1t -3942.3125 478.6406 moveto -P$17 -3947.6719 479.2031 moveto -P$1w -3947.6719 478.2969 moveto -P$1x -3953.0156 482.4219 moveto -P$1d -3955.7344 478.2969 moveto -P$1e -3964.9375 479.4531 moveto -P$1j -3970.8594 478.7031 moveto -P$1a -3978.75 481.4688 moveto -P$1s -3977.6719 481.1406 moveto -P$1t -3981.1719 476.2656 moveto -P$2j -3994.1094 481.7188 moveto -P$15 -3996.2656 481.2656 moveto -P$16 -4000.1719 484.0313 moveto -P$1y -4003.8438 481.7344 moveto -P$1p -4008.1719 484.0313 moveto -P$1y -4011.8438 481.7344 moveto -P$1p -4015.125 478.4531 moveto -P$18 -4015.125 475.8906 moveto -P$19 -4023.5938 481.0469 moveto -P$1z -4030.4531 481.6563 moveto -P$2c -4031.5313 484.2031 moveto -P$2d -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3893 496 moveto -142 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3893 504 moveto -142 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -163 48 4105.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -162 47 4106.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -161 46 4106.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -160 45 4107.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -159 44 4107.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -158 43 4108.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -157 42 4108.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -156 41 4109.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -155 40 4109.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -163 48 4101.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -163 48 4101.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4116.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4116.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4119.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4136.0781 868.9063 moveto -P$26 -4133.1094 865.2344 moveto -P$27 -4145.5 869.4688 moveto -P$1s -4144.4219 869.1406 moveto -P$1t -4147.7656 870.4219 moveto -P$1d -4150.4844 866.2969 moveto -P$1e -4160.0625 866.6406 moveto -P$17 -4165.8594 869.7188 moveto -P$15 -4168.0156 869.2656 moveto -P$16 -4175.5938 869.7344 moveto -P$1p -4171.9219 867.4531 moveto -P$1q -4178.875 863.8906 moveto -P$1k -4187.5 869.4688 moveto -P$1s -4186.4219 869.1406 moveto -P$1t -4189.9219 864.2656 moveto -P$2e -4197.9844 867.7188 moveto -P$21 -4206.8594 869.7188 moveto -P$15 -4209.0156 869.2656 moveto -P$16 -4216.2031 869.6563 moveto -P$2c -4217.2813 872.2031 moveto -P$2d -4225.5 869.4688 moveto -P$1s -4224.4219 869.1406 moveto -P$1t -4230.8594 865.4375 moveto -P$1b -4230.1875 864.2656 moveto -P$1c -4240.0625 866.6406 moveto -P$17 -4247.0625 866.6406 moveto -P$17 -4255.5 869.4688 moveto -P$1s -4254.4219 869.1406 moveto -P$1t -4258.9531 864.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4102.75 884 moveto -161 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4102.75 892 moveto -161 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -190 48 3043 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -189 47 3043.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -188 46 3044 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -187 45 3044.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -186 44 3045 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -185 43 3045.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -184 42 3046 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -183 41 3046.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -182 40 3047 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -190 48 3039 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -190 48 3039 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3054 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3054 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3056.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3074.4219 476.5469 moveto -P$1m -3082.75 481.4688 moveto -P$1s -3081.6719 481.1406 moveto -P$1t -3089.8594 478.7031 moveto -P$1a -3093.2031 476.5938 moveto -P$1h -3097.125 478.4531 moveto -P$18 -3097.125 475.8906 moveto -P$19 -3102.6719 479.2031 moveto -P$1w -3102.6719 478.2969 moveto -P$1x -3113.5938 481.0469 moveto -P$1z -3114.9688 476.2656 moveto -P$1i -3128.75 481.4688 moveto -P$1s -3127.6719 481.1406 moveto -P$1t -3136.2344 479.7188 moveto -P$21 -3143.1719 484.0313 moveto -P$1y -3146.8438 481.7344 moveto -P$1p -3150.125 475.8906 moveto -P$1k -3156.1094 481.7188 moveto -P$15 -3158.2656 481.2656 moveto -P$16 -3162.2031 476.5938 moveto -P$1h -3171.75 481.4688 moveto -P$1s -3170.6719 481.1406 moveto -P$1t -3174.1719 476.2656 moveto -P$2j -3187.1094 481.7188 moveto -P$15 -3189.2656 481.2656 moveto -P$16 -3193.1719 484.0313 moveto -P$1y -3196.8438 481.7344 moveto -P$1p -3201.1719 484.0313 moveto -P$1y -3204.8438 481.7344 moveto -P$1p -3208.125 478.4531 moveto -P$18 -3208.125 475.8906 moveto -P$19 -3216.5938 481.0469 moveto -P$1z -3223.4531 481.6563 moveto -P$2c -3224.5313 484.2031 moveto -P$2d -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3040 496 moveto -188 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3040 504 moveto -188 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -77 48 4053.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -76 47 4054.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -75 46 4054.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -74 45 4055.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -73 44 4055.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -72 43 4056.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -71 42 4056.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -70 41 4057.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -69 40 4057.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -77 48 4049.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -77 48 4049.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4064.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4064.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4067.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4085.1719 352.5469 moveto -P$1m -4093.5 357.4688 moveto -P$1s -4092.4219 357.1406 moveto -P$1t -4099.6875 355.4531 moveto -P$1j -4100.1094 354.4531 moveto -P$2b -4106.875 354.4531 moveto -P$18 -4106.875 351.8906 moveto -P$19 -4114.6094 354.7031 moveto -P$1a -4122.5 357.4688 moveto -P$1s -4121.4219 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4050.75 372 moveto -75 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4050.75 380 moveto -75 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -104 48 3226 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -103 47 3226.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -102 46 3227 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -101 45 3227.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -100 44 3228 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -99 43 3228.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -98 42 3229 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -97 41 3229.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -96 40 3230 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -104 48 3222 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -104 48 3222 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3237 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3237 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3239.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3257.4219 600.5469 moveto -P$1m -3261.2031 600.5938 moveto -P$1h -3268.1094 605.7188 moveto -P$15 -3270.2656 605.2656 moveto -P$16 -3278.5938 605.0469 moveto -P$1z -3285.4531 603.4531 moveto -P$1f -3281.7813 605.7344 moveto -P$1g -3292.1094 605.7188 moveto -P$15 -3294.2656 605.2656 moveto -P$16 -3297.125 599.8906 moveto -P$1k -3302.6719 603.2031 moveto -P$1w -3302.6719 602.2969 moveto -P$1x -3313.5938 605.0469 moveto -P$1z -3321.75 605.4688 moveto -P$1s -3320.6719 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3223 620 moveto -102 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3223 628 moveto -102 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -183 48 4291.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -182 47 4292.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -181 46 4292.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -180 45 4293.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -179 44 4293.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -178 43 4294.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -177 42 4294.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -176 41 4295.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -175 40 4295.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -183 48 4287.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -183 48 4287.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4302.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4302.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4305.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4316.7188 352.2656 moveto -P$1i -4327.8594 357.7188 moveto -P$15 -4330.0156 357.2656 moveto -P$16 -4337.0625 354.6406 moveto -P$17 -4339.8438 351.8906 moveto -P$2k -4346.9219 352.2656 moveto -P$20 -4354.1094 354.4531 moveto -P$2b -4366.5 357.4688 moveto -P$1s -4365.4219 357.1406 moveto -P$1t -4374.3438 357.0469 moveto -P$1z -4377.9531 352.5938 moveto -P$1h -4381.7969 352.2656 moveto -P$1u -4395.0781 356.9063 moveto -P$26 -4392.1094 353.2344 moveto -P$27 -4398.9219 352.2656 moveto -P$2g -4410.8906 359.7656 moveto -P$1v -4419.5 357.4688 moveto -P$1s -4418.4219 357.1406 moveto -P$1t -4427.3438 357.0469 moveto -P$1z -4435.5 357.4688 moveto -P$1s -4434.4219 357.1406 moveto -P$1t -4441.6875 355.4531 moveto -P$1j -4445.8594 357.7188 moveto -P$15 -4448.0156 357.2656 moveto -P$16 -4451.9531 352.5938 moveto -P$1h -4458.4219 355.2031 moveto -P$1w -4458.4219 354.2969 moveto -P$1x -4467.6875 355.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4288.75 372 moveto -181 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4288.75 380 moveto -181 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -138 48 3365 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -137 47 3365.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -136 46 3366 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -135 45 3366.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -134 44 3367 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -133 43 3367.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -132 42 3368 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -131 41 3368.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -130 40 3369 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -138 48 3361 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -138 48 3361 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3376 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3376 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3378.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3389.9688 600.2656 moveto -P$1i -3403.75 605.4688 moveto -P$1s -3402.6719 605.1406 moveto -P$1t -3411.2344 603.7188 moveto -P$21 -3418.1719 608.0313 moveto -P$1y -3421.8438 605.7344 moveto -P$1p -3425.125 599.8906 moveto -P$1k -3431.1094 605.7188 moveto -P$15 -3433.2656 605.2656 moveto -P$16 -3437.2031 600.5938 moveto -P$1h -3446.75 605.4688 moveto -P$1s -3445.6719 605.1406 moveto -P$1t -3455.7344 600.9375 moveto -P$1l -3459.6719 603.2031 moveto -P$1w -3459.6719 602.2969 moveto -P$1x -3470.5938 605.0469 moveto -P$1z -3474.2031 600.5938 moveto -P$1h -3483.75 605.4688 moveto -P$1s -3482.6719 605.1406 moveto -P$1t -3491.5938 602.4531 moveto -P$28 -3493.2031 600.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3362 620 moveto -136 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3362 628 moveto -136 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -90 48 3418 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -89 47 3418.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -88 46 3419 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -87 45 3419.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -86 44 3420 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -85 43 3420.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -84 42 3421 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -83 41 3421.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -82 40 3422 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -90 48 3414 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -90 48 3414 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3429 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3429 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3431.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3442.9688 864.2656 moveto -P$1i -3456.75 869.4688 moveto -P$1s -3455.6719 869.1406 moveto -P$1t -3464.2344 867.7188 moveto -P$21 -3471.1719 872.0313 moveto -P$1y -3474.8438 869.7344 moveto -P$1p -3478.125 863.8906 moveto -P$1k -3484.1094 869.7188 moveto -P$15 -3486.2656 869.2656 moveto -P$16 -3490.2031 864.5938 moveto -P$1h -3499.75 869.4688 moveto -P$1s -3498.6719 869.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3415 884 moveto -88 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3415 892 moveto -88 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -93 48 4007.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -92 47 4008.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -91 46 4008.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -90 45 4009.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -89 44 4009.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -88 43 4010.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -87 42 4010.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -86 41 4011.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -85 40 4011.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -93 48 4003.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -93 48 4003.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4018.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4018.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4021.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4032.7188 724.2656 moveto -P$1i -4046.5 729.4688 moveto -P$1s -4045.4219 729.1406 moveto -P$1t -4054.3438 726.4531 moveto -P$28 -4055.9531 724.5938 moveto -P$1h -4062.8594 725.4375 moveto -P$1b -4062.1875 724.2656 moveto -P$1c -4072.0625 726.6406 moveto -P$17 -4079.0625 726.6406 moveto -P$17 -4087.5 729.4688 moveto -P$1s -4086.4219 729.1406 moveto -P$1t -4090.9531 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4004.75 744 moveto -91 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4004.75 752 moveto -91 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -119 48 3538.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -118 47 3539.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -117 46 3539.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -116 45 3540.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -115 44 3540.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -114 43 3541.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -113 42 3541.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -112 41 3542.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -111 40 3542.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -119 48 3534.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -119 48 3534.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3549.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3549.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3552.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3563.7188 600.2656 moveto -P$1i -3577.5 605.4688 moveto -P$1s -3576.4219 605.1406 moveto -P$1t -3585.3438 602.4531 moveto -P$28 -3586.9531 600.5938 moveto -P$1h -3590.9219 600.2656 moveto -P$2j -3600.875 602.4531 moveto -P$18 -3600.875 599.8906 moveto -P$19 -3608.9844 603.7188 moveto -P$21 -3620.5 605.4688 moveto -P$1s -3619.4219 605.1406 moveto -P$1t -3621.7188 600.2656 moveto -P$1i -3632.6094 609.625 moveto -P$24 -3636.9219 608.0313 moveto -P$1y -3640.5938 605.7344 moveto -P$1p -3649.5 605.4688 moveto -P$1s -3648.4219 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3535.75 620 moveto -117 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3535.75 628 moveto -117 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -136 48 3693 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -135 47 3693.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -134 46 3694 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -133 45 3694.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -132 44 3695 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -131 43 3695.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -130 42 3696 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -129 41 3696.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -128 40 3697 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -136 48 3689 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -136 48 3689 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3704 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3704 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3706.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3719.0469 600.2656 moveto -P$1u -3729.1719 608.0313 moveto -P$1y -3732.8438 605.7344 moveto -P$1p -3740.4531 605.6563 moveto -P$2c -3741.5313 608.2031 moveto -P$2d -3747.9375 603.4531 moveto -P$1j -3752.1094 605.7188 moveto -P$15 -3754.2656 605.2656 moveto -P$16 -3761.4531 603.4531 moveto -P$1f -3757.7813 605.7344 moveto -P$1g -3770.75 605.4688 moveto -P$1s -3769.6719 605.1406 moveto -P$1t -3774.3594 601.2344 moveto -P$22 -3773.1719 600.2656 moveto -P$23 -3784.9375 603.4531 moveto -P$1j -3788.6719 603.2031 moveto -P$1w -3788.6719 602.2969 moveto -P$1x -3798.8594 602.7031 moveto -P$1a -3806.75 605.4688 moveto -P$1s -3805.6719 605.1406 moveto -P$1t -3813.3125 602.6406 moveto -P$17 -3820.3125 602.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3690 620 moveto -134 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3690 628 moveto -134 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -186 48 3185.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -185 47 3186 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -184 46 3186.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -183 45 3187 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -182 44 3187.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -181 43 3188 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -180 42 3188.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -179 41 3189 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -178 40 3189.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -186 48 3181.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -186 48 3181.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -3196.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3196.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3199.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -3211.5469 724.2656 moveto -P$1u -3224.8125 726.6406 moveto -P$17 -3233.25 729.4688 moveto -P$1s -3232.1719 729.1406 moveto -P$1t -3239.4375 727.4531 moveto -P$1j -3241.8594 725.2344 moveto -P$2m -3240.6719 724.2656 moveto -P$2n -3255.25 729.4688 moveto -P$1s -3254.1719 729.1406 moveto -P$1t -3260.9531 723.8906 moveto -P$2l -3261.625 726.4531 moveto -P$18 -3261.625 723.8906 moveto -P$19 -3270.0938 729.0469 moveto -P$1z -3278.25 729.4688 moveto -P$1s -3277.1719 729.1406 moveto -P$1t -3284.9531 727.4531 moveto -P$1f -3281.2813 729.7344 moveto -P$1g -3295.2344 724.9375 moveto -P$1l -3299.1719 727.2031 moveto -P$1w -3299.1719 726.2969 moveto -P$1x -3310.0938 729.0469 moveto -P$1z -3313.7031 724.5938 moveto -P$1h -3323.25 729.4688 moveto -P$1s -3322.1719 729.1406 moveto -P$1t -3331.0938 729.0469 moveto -P$1z -3334.7031 724.5938 moveto -P$1h -3338.6719 724.2656 moveto -P$2e -3342.7031 724.5938 moveto -P$1h -3352.25 729.4688 moveto -P$1s -3351.1719 729.1406 moveto -P$1t -3359.7344 727.7188 moveto -P$21 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3182.5 744 moveto -184 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3182.5 752 moveto -184 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -162 48 4235 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -161 47 4235.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -160 46 4236 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -159 45 4236.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -158 44 4237 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -157 43 4237.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -156 42 4238 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -155 41 4238.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -154 40 4239 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -162 48 4231 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -162 48 4231 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4246 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4246 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4248.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4261.0469 600.2656 moveto -P$1u -4274.3125 602.6406 moveto -P$17 -4282.75 605.4688 moveto -P$1s -4281.6719 605.1406 moveto -P$1t -4288.9375 603.4531 moveto -P$1j -4290.1719 600.2656 moveto -P$2f -4301.6719 603.2031 moveto -P$1w -4301.6719 602.2969 moveto -P$1x -4312.2344 603.7188 moveto -P$21 -4323.75 605.4688 moveto -P$1s -4322.6719 605.1406 moveto -P$1t -4326.1719 600.2656 moveto -P$2q -4335.6719 603.2031 moveto -P$1w -4335.6719 602.2969 moveto -P$1x -4341.125 599.8906 moveto -P$1k -4348.4531 603.4531 moveto -P$1f -4344.7813 605.7344 moveto -P$1g -4357.75 605.4688 moveto -P$1s -4356.6719 605.1406 moveto -P$1t -4363.9375 603.4531 moveto -P$1j -4365.1719 600.2656 moveto -P$2j -4378.1094 605.7188 moveto -P$15 -4380.2656 605.2656 moveto -P$16 -4384.1719 608.0313 moveto -P$1y -4387.8438 605.7344 moveto -P$1p -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4232 620 moveto -160 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4232 628 moveto -160 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -88 48 2882.5 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -87 47 2883 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -86 46 2883.5 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -85 45 2884 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -84 44 2884.5 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -83 43 2885 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -82 42 2885.5 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -81 41 2886 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -80 40 2886.5 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -88 48 2878.5 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -88 48 2878.5 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2893.5 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2893.5 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2896.4688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2915.2344 600.9375 moveto -P$1l -2919.6094 605.7188 moveto -P$15 -2921.7656 605.2656 moveto -P$16 -2925.7031 600.5938 moveto -P$1h -2935.25 605.4688 moveto -P$1s -2934.1719 605.1406 moveto -P$1t -2941.9531 605.6563 moveto -P$2c -2943.0313 608.2031 moveto -P$2d -2948.1719 603.2031 moveto -P$1w -2948.1719 602.2969 moveto -P$1x -2957.4375 603.4531 moveto -P$1j -2961.3594 609.625 moveto -P$24 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2879.5 620 moveto -86 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2879.5 628 moveto -86 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -96 48 4668 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -95 47 4668.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -94 46 4669 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -93 45 4669.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -92 44 4670 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -91 43 4670.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -90 42 4671 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -89 41 4671.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -88 40 4672 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -96 48 4664 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -96 48 4664 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4679 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4679 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4681.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4697.1094 477.4375 moveto -P$1b -4696.4375 476.2656 moveto -P$1c -4708.7344 476.9375 moveto -P$1l -4715.4219 476.5469 moveto -P$1m -4721.7344 477.0625 moveto -P$1n -4721.7344 476.1094 moveto -P$1o -4731.8438 481.7344 moveto -P$1p -4728.1719 479.4531 moveto -P$1q -4735.125 478.4531 moveto +578.5 481.4688 moveto P$1r -4735.125 475.8906 moveto -P$19 -4743.75 481.4688 moveto +577.4219 481.1406 moveto P$1s -4742.6719 481.1406 moveto -P$1t -4750.8594 478.7031 moveto -P$1a -4754.2031 476.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4665 496 moveto -94 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4665 504 moveto -94 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -61 48 4728.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -60 47 4729.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -59 46 4729.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -58 45 4730.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -57 44 4730.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -56 43 4731.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -55 42 4731.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -54 41 4732.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -53 40 4732.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -61 48 4724.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -61 48 4724.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4739.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4739.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4742.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4754.7969 724.2656 moveto -P$1u -4768.0625 726.6406 moveto -P$17 -4776.5 729.4688 moveto -P$1s -4775.4219 729.1406 moveto -P$1t -4782.6875 727.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4725.75 744 moveto -59 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4725.75 752 moveto -59 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -140 48 7010 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -139 47 7010.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -138 46 7011 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -137 45 7011.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -136 44 7012 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -135 43 7012.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -134 42 7013 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -133 41 7013.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -132 40 7014 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -140 48 7006 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -140 48 7006 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7021 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7021 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7023.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7041.4219 476.5469 moveto -P$1m -7044.125 478.4531 moveto -P$18 -7044.125 475.8906 moveto -P$19 -7048.2031 476.5938 moveto -P$1h -7057.75 481.4688 moveto -P$1s -7056.6719 481.1406 moveto -P$1t -7061.3594 477.2344 moveto -P$22 -7060.1719 476.2656 moveto -P$23 -7071.9375 479.4531 moveto -P$1j -7075.6719 479.2031 moveto -P$1w -7075.6719 478.2969 moveto -P$1x -7086.5938 478.4531 moveto -P$28 -7089.8594 485.625 moveto -P$24 -7094.3594 477.2344 moveto -P$22 -7093.1719 476.2656 moveto -P$23 -7104.9375 479.4531 moveto -P$1j -7108.6719 479.2031 moveto -P$1w -7108.6719 478.2969 moveto -P$1x -7113.3594 478.4531 moveto -P$2b -7120.125 478.4531 moveto -P$18 -7120.125 475.8906 moveto -P$19 -7127.4531 479.4531 moveto -P$1f -7123.7813 481.7344 moveto -P$1g -7136.75 481.4688 moveto -P$1s -7135.6719 481.1406 moveto -P$1t -7142.9375 479.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7007 496 moveto -138 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7007 504 moveto -138 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -88 48 9383.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -87 47 9384 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -86 46 9384.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -85 45 9385 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -84 44 9385.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -83 43 9386 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -82 42 9386.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -81 41 9387 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -80 40 9387.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -88 48 9379.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -88 48 9379.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9394.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9394.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9397.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9409.6719 352.2656 moveto -P$2f -9419.7031 352.5938 moveto -P$1h -9424.7031 352.5938 moveto -P$1h -9429.6719 360.0313 moveto +584.6875 479.4531 moveto P$1y -9433.3438 357.7344 moveto -P$1p -9439.6094 353.4375 moveto -P$1b -9438.9375 352.2656 moveto -P$1c -9444.5156 358.4219 moveto -P$1d -9447.2344 354.2969 moveto -P$1e -9453.7031 352.5938 moveto -P$1h -9463.0938 357.0469 moveto -P$29 fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9380.5 372 moveto -86 0 rlineto +449.75 496 moveto +137 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9380.5 380 moveto -86 0 rlineto +449.75 504 moveto +137 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -80 48 9268 344 1 roundrect +117 48 342.75 220 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -79 47 9268.5 344.5 1 roundrect +116 47 343.25 220.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -78 46 9269 345 1 roundrect +115 46 343.75 221 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -77 45 9269.5 345.5 1 roundrect +114 45 344.25 221.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -76 44 9270 346 1 roundrect +113 44 344.75 222 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -75 43 9270.5 346.5 1 roundrect +112 43 345.25 222.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -74 42 9271 347 1 roundrect +111 42 345.75 223 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -73 41 9271.5 347.5 1 roundrect +110 41 346.25 223.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -72 40 9272 348 1 roundrect +109 40 346.75 224 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -80 48 9264 340 simplerect +117 48 338.75 216 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -80 48 9264 340 simplerect +117 48 338.75 216 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -9279 356 11 0 360 arc +353.75 232 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9279 356 11 0 360 arc +353.75 232 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -9281.9688 361.6406 moveto -P$11 +356.7188 237.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -9294.1719 352.2656 moveto -P$25 -9305.6719 355.2031 moveto -P$1w -9305.6719 354.2969 moveto -P$1x -9311.0156 358.4219 moveto -P$1d -9313.7344 354.2969 moveto -P$1e -9324.5938 357.0469 moveto -P$1z -9331.8594 354.7031 moveto -P$1a -9339.75 357.4688 moveto -P$1s -9338.6719 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9265 372 moveto -78 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9265 380 moveto -78 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -94 48 9012 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -93 47 9012.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -92 46 9013 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -91 45 9013.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -90 44 9014 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -89 43 9014.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -88 42 9015 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -87 41 9015.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -86 40 9016 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -94 48 9008 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -94 48 9008 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9023 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9023 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9025.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9038.0469 352.2656 moveto -P$1u -9051.3125 354.6406 moveto -P$17 -9059.75 357.4688 moveto -P$1s -9058.6719 357.1406 moveto -P$1t -9065.9375 355.4531 moveto +375.4844 228.9375 moveto +P$14 +379.8594 233.7188 moveto +P$1i +382.0156 233.2656 moveto P$1j -9067.1719 352.2656 moveto +385.9531 228.5938 moveto +P$1k +395.5 233.4688 moveto +P$1r +394.4219 233.1406 moveto +P$1s +402.2031 233.6563 moveto P$2g -9075.6719 355.2031 moveto -P$1w -9075.6719 354.2969 moveto -P$1x -9085.4531 357.6563 moveto -P$2c -9086.5313 360.2031 moveto -P$2d -9089.125 354.4531 moveto -P$18 -9089.125 351.8906 moveto -P$19 -9097.5938 357.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9009 372 moveto -92 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9009 380 moveto -92 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -92 48 9141 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -91 47 9141.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -90 46 9142 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -89 45 9142.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -88 44 9143 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -87 43 9143.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -86 42 9144 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -85 41 9144.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -84 40 9145 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -92 48 9137 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -92 48 9137 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9152 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9152 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9154.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9167.1719 352.2656 moveto -P$2f -9174.9688 352.2656 moveto -P$1i -9181.9688 352.2656 moveto -P$1i -9191.3594 353.2344 moveto -P$22 -9190.1719 352.2656 moveto -P$23 -9201.1094 353.4375 moveto +403.2813 236.2031 moveto +P$2h +408.4219 231.2031 moveto +P$1l +408.4219 230.2969 moveto +P$1m +417.6875 231.4531 moveto +P$1y +421.6094 237.625 moveto +P$1q +427.8594 229.4375 moveto +P$16 +427.1875 228.2656 moveto +P$17 +432.875 227.8906 moveto +P$1g +435.875 230.4531 moveto P$1b -9200.4375 352.2656 moveto +435.875 227.8906 moveto P$1c -9206.0156 358.4219 moveto -P$1d -9208.7344 354.2969 moveto -P$1e -9215.2031 352.5938 moveto -P$1h -9224.5938 357.0469 moveto -P$29 +441.8594 233.7188 moveto +P$1i +444.0156 233.2656 moveto +P$1j +451.0625 230.6406 moveto +P$1o fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9138 372 moveto -90 0 rlineto +339.75 248 moveto +115 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9138 380 moveto -90 0 rlineto +339.75 256 moveto +115 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -159 48 11153.8 344 1 roundrect +88 48 504.5 344 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -158 47 11154.3 344.5 1 roundrect +87 47 505 344.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -157 46 11154.8 345 1 roundrect +86 46 505.5 345 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -156 45 11155.3 345.5 1 roundrect +85 45 506 345.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -155 44 11155.8 346 1 roundrect +84 44 506.5 346 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -154 43 11156.3 346.5 1 roundrect +83 43 507 346.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -153 42 11156.8 347 1 roundrect +82 42 507.5 347 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -152 41 11157.3 347.5 1 roundrect +81 41 508 347.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -151 40 11157.8 348 1 roundrect +80 40 508.5 348 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -159 48 11149.8 340 simplerect +88 48 500.5 340 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -159 48 11149.8 340 simplerect +88 48 500.5 340 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -11164.8 356 11 0 360 arc +515.5 356 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11164.8 356 11 0 360 arc +515.5 356 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -11167.7688 361.6406 moveto -P$11 +518.4688 361.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -11182.2375 361.0156 moveto +530.6719 352.2656 moveto +P$2i +534.7031 352.5938 moveto +P$1k +544.25 357.4688 moveto +P$1r +543.1719 357.1406 moveto +P$1s +551.7344 355.7188 moveto +P$1a +560.6094 353.4375 moveto +P$16 +559.9375 352.2656 moveto +P$17 +565.625 351.8906 moveto +P$1g +568.625 354.4531 moveto +P$1b +568.625 351.8906 moveto +P$1c +574.6094 357.7188 moveto +P$1i +576.7656 357.2656 moveto +P$1j +583.8125 354.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +501.5 372 moveto +86 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +501.5 380 moveto +86 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +110 48 307 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +109 47 307.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +108 46 308 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +107 45 308.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +106 44 309 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +105 43 309.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +104 42 310 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +103 41 310.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +102 40 311 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +110 48 303 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +110 48 303 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +318 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +318 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +320.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +333.1719 476.2656 moveto +P$2i +337.2031 476.5938 moveto +P$1k +346.75 481.4688 moveto +P$1r +345.6719 481.1406 moveto +P$1s +354.2344 479.7188 moveto +P$1a +361.3594 477.2344 moveto +P$27 +360.1719 476.2656 moveto +P$28 +371.9375 479.4531 moveto +P$1y +375.6719 479.2031 moveto +P$1l +375.6719 478.2969 moveto +P$1m +380.3594 478.4531 moveto +P$2f +387.125 478.4531 moveto +P$1b +387.125 475.8906 moveto +P$1c +394.4531 479.4531 moveto +P$18 +390.7813 481.7344 moveto +P$19 +403.75 481.4688 moveto +P$1r +402.6719 481.1406 moveto +P$1s +409.9375 479.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +304 496 moveto +108 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +304 504 moveto +108 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +88 48 1104.5 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +87 47 1105 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +86 46 1105.5 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +85 45 1106 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +84 44 1106.5 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +83 43 1107 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +82 42 1107.5 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +81 41 1108 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +80 40 1108.5 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +88 48 1100.5 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +88 48 1100.5 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1115.5 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1115.5 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1118.4688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1137.2344 600.9375 moveto +P$14 +1141.6094 605.7188 moveto +P$1i +1143.7656 605.2656 moveto +P$1j +1147.7031 600.5938 moveto +P$1k +1157.25 605.4688 moveto +P$1r +1156.1719 605.1406 moveto +P$1s +1163.9531 605.6563 moveto +P$2g +1165.0313 608.2031 moveto +P$2h +1170.1719 603.2031 moveto +P$1l +1170.1719 602.2969 moveto +P$1m +1179.4375 603.4531 moveto +P$1y +1183.3594 609.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1101.5 620 moveto +86 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1101.5 628 moveto +86 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +160 48 893 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +159 47 893.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +158 46 894 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +157 45 894.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +156 44 895 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +155 43 895.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +154 42 896 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +153 41 896.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +152 40 897 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +160 48 889 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +160 48 889 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +904 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +904 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +906.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +925.7344 724.9375 moveto +P$14 +930.1094 729.7188 moveto +P$1i +932.2656 729.2656 moveto +P$1j +936.2031 724.5938 moveto +P$1k +945.75 729.4688 moveto +P$1r +944.6719 729.1406 moveto +P$1s +952.4531 729.6563 moveto +P$2g +953.5313 732.2031 moveto +P$2h +958.6719 727.2031 moveto +P$1l +958.6719 726.2969 moveto +P$1m +967.9375 727.4531 moveto +P$1y +971.8594 733.625 moveto +P$1q +975.1719 724.2656 moveto +P$2j +983.6719 727.2031 moveto +P$1l +983.6719 726.2969 moveto +P$1m +993.8594 726.7031 moveto +P$1h +999.1094 729.7188 moveto +P$1i +1001.2656 729.2656 moveto +P$1j +1004.125 723.8906 moveto +P$1g +1007.125 726.4531 moveto +P$1b +1007.125 723.8906 moveto +P$1c +1009.6563 726.4531 moveto +P$2k +1018.1094 729.7188 moveto +P$1i +1020.2656 729.2656 moveto +P$1j +1024.2031 724.5938 moveto +P$1k +1028.125 726.4531 moveto +P$1b +1028.125 723.8906 moveto +P$1c +1033.6719 727.2031 moveto +P$1l +1033.6719 726.2969 moveto +P$1m +1044.5938 729.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +890 744 moveto +158 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +890 752 moveto +158 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +104 48 1088 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +103 47 1088.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +102 46 1089 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +101 45 1089.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +100 44 1090 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +99 43 1090.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +98 42 1091 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +97 41 1091.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +96 40 1092 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +104 48 1084 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +104 48 1084 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1099 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1099 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1101.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1114.0469 724.2656 moveto +P$24 +1127.3125 726.6406 moveto +P$1o +1135.75 729.4688 moveto +P$1r +1134.6719 729.1406 moveto +P$1s +1144.7344 724.9375 moveto +P$14 +1148.6719 727.2031 moveto +P$1l +1148.6719 726.2969 moveto +P$1m +1159.5938 729.0469 moveto +P$1d +1163.2031 724.5938 moveto +P$1k +1172.75 729.4688 moveto +P$1r +1171.6719 729.1406 moveto +P$1s +1180.5938 726.4531 moveto +P$2c +1182.2031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1085 744 moveto +102 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1085 752 moveto +102 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +140 48 980 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +139 47 980.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +138 46 981 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +137 45 981.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +136 44 982 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +135 43 982.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +134 42 983 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +133 41 983.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +132 40 984 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +140 48 976 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +140 48 976 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +991 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +991 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +993.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1012.7344 476.9375 moveto +P$14 +1017.1094 481.7188 moveto +P$1i +1019.2656 481.2656 moveto +P$1j +1023.2031 476.5938 moveto +P$1k +1032.75 481.4688 moveto +P$1r +1031.6719 481.1406 moveto +P$1s +1039.4531 481.6563 moveto +P$2g +1040.5313 484.2031 moveto +P$2h +1045.6719 479.2031 moveto +P$1l +1045.6719 478.2969 moveto +P$1m +1054.9375 479.4531 moveto +P$1y +1058.8594 485.625 moveto +P$1q +1063.3594 477.2344 moveto +P$27 +1062.1719 476.2656 moveto +P$28 +1070.0156 482.4219 moveto +P$1w +1072.7344 478.2969 moveto +P$1x +1081.9375 479.4531 moveto +P$1y +1084.1719 484.0313 moveto +P$1e +1087.8438 481.7344 moveto +P$1f +1093.6719 479.2031 moveto +P$1l +1093.6719 478.2969 moveto +P$1m +1103.3125 478.6406 moveto +P$1o +1111.75 481.4688 moveto +P$1r +1110.6719 481.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +977 496 moveto +138 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +977 504 moveto +138 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +111 48 2021.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +110 47 2022.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +109 46 2022.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +108 45 2023.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +107 44 2023.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +106 43 2024.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +105 42 2024.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +104 41 2025.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +103 40 2025.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +111 48 2017.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +111 48 2017.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2032.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2032.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2035.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2054.4844 600.9375 moveto +P$14 +2058.4219 603.2031 moveto +P$1l +2058.4219 602.2969 moveto +P$1m +2069.3438 605.0469 moveto +P$1d +2072.9531 600.5938 moveto +P$1k +2082.5 605.4688 moveto +P$1r +2081.4219 605.1406 moveto +P$1s +2090.3438 605.0469 moveto +P$1d +2093.9531 600.5938 moveto +P$1k +2096.7188 600.2656 moveto +P$1p +2107.6094 609.625 moveto +P$1q +2111.9219 608.0313 moveto +P$1e +2115.5938 605.7344 moveto +P$1f +2124.5 605.4688 moveto +P$1r +2123.4219 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2018.75 620 moveto +109 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2018.75 628 moveto +109 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +67 48 3492.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +66 47 3493.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +65 46 3493.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +64 45 3494.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +63 44 3494.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +62 43 3495.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +61 42 3495.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +60 41 3496.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +59 40 3496.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +67 48 3488.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +67 48 3488.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3503.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3503.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3506.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3521.8594 601.4375 moveto +P$16 +3521.1875 600.2656 moveto +P$17 +3531.0625 602.6406 moveto +P$1o +3538.0625 602.6406 moveto +P$1o +3546.5 605.4688 moveto +P$1r +3545.4219 605.1406 moveto +P$1s +3549.9531 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3489.75 620 moveto +65 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3489.75 628 moveto +65 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +108 48 2418 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +107 47 2418.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +106 46 2419 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +105 45 2419.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +104 44 2420 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +103 43 2420.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +102 42 2421 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +101 41 2421.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +100 40 2422 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +108 48 2414 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +108 48 2414 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2429 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2429 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2431.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2447.1094 477.4375 moveto +P$16 +2446.4375 476.2656 moveto +P$17 +2452.0156 482.4219 moveto +P$1w +2454.7344 478.2969 moveto +P$1x +2461.2031 476.5938 moveto +P$1k +2470.5938 481.0469 moveto +P$2d +2475.6719 479.2031 moveto +P$1l +2475.6719 478.2969 moveto +P$1m +2484.9375 479.4531 moveto +P$1y +2486.125 478.4531 moveto +P$1b +2486.125 475.8906 moveto +P$1c +2494.5938 481.0469 moveto +P$1d +2501.4531 481.6563 moveto +P$2g +2502.5313 484.2031 moveto +P$2h +2505.1719 476.2656 moveto +P$2l +2512.125 478.4531 moveto +P$1b +2512.125 475.8906 moveto +P$1c +2516.2031 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2415 496 moveto +106 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2415 504 moveto +106 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +122 48 2687 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +121 47 2687.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +120 46 2688 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +119 45 2688.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +118 44 2689 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +117 43 2689.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +116 42 2690 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +115 41 2690.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +114 40 2691 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +122 48 2683 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +122 48 2683 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2698 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2698 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2700.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2716.1094 601.4375 moveto +P$16 +2715.4375 600.2656 moveto +P$17 +2721.0156 606.4219 moveto +P$1w +2723.7344 602.2969 moveto +P$1x +2730.2031 600.5938 moveto +P$1k +2739.5938 605.0469 moveto +P$2d +2744.6719 603.2031 moveto +P$1l +2744.6719 602.2969 moveto +P$1m +2753.9375 603.4531 moveto +P$1y +2755.125 602.4531 moveto +P$1b +2755.125 599.8906 moveto +P$1c +2763.5938 605.0469 moveto +P$1d +2770.4531 605.6563 moveto +P$2g +2771.5313 608.2031 moveto +P$2h +2779.4219 600.5469 moveto +P$1z +2783.2031 600.5938 moveto +P$1k +2792.75 605.4688 moveto +P$1r +2791.6719 605.1406 moveto +P$1s +2796.1719 608.0313 moveto +P$1e +2799.8438 605.7344 moveto +P$1f +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2684 620 moveto +120 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2684 628 moveto +120 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +199 48 1520.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +198 47 1521.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +197 46 1521.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +196 45 1522.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +195 44 1522.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +194 43 1523.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +193 42 1523.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +192 41 1524.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +191 40 1524.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +199 48 1516.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +199 48 1516.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1531.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1531.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1534.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1553.4844 476.9375 moveto +P$14 +1557.8594 481.7188 moveto +P$1i +1560.0156 481.2656 moveto +P$1j +1563.9531 476.5938 moveto +P$1k +1573.5 481.4688 moveto +P$1r +1572.4219 481.1406 moveto +P$1s +1580.2031 481.6563 moveto +P$2g +1581.2813 484.2031 moveto +P$2h +1586.4219 479.2031 moveto +P$1l +1586.4219 478.2969 moveto +P$1m +1595.6875 479.4531 moveto +P$1y +1599.6094 485.625 moveto +P$1q +1601.7188 476.2656 moveto +P$1p +1615.5 481.4688 moveto +P$1r +1614.4219 481.1406 moveto +P$1s +1622.9844 479.7188 moveto +P$1a +1629.9219 484.0313 moveto +P$1e +1633.5938 481.7344 moveto +P$1f +1636.875 475.8906 moveto +P$1g +1642.8594 481.7188 moveto +P$1i +1645.0156 481.2656 moveto +P$1j +1648.9531 476.5938 moveto +P$1k +1658.5 481.4688 moveto +P$1r +1657.4219 481.1406 moveto +P$1s +1660.9219 476.2656 moveto +P$2m +1673.8594 481.7188 moveto +P$1i +1676.0156 481.2656 moveto +P$1j +1679.9219 484.0313 moveto +P$1e +1683.5938 481.7344 moveto +P$1f +1687.9219 484.0313 moveto +P$1e +1691.5938 481.7344 moveto +P$1f +1694.875 478.4531 moveto +P$1b +1694.875 475.8906 moveto +P$1c +1703.3438 481.0469 moveto +P$1d +1710.2031 481.6563 moveto +P$2g +1711.2813 484.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1517.75 496 moveto +197 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1517.75 504 moveto +197 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +87 48 3020.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +86 47 3021.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +85 46 3021.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +84 45 3022.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +83 44 3022.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +82 43 3023.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +81 42 3023.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +80 41 3024.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +79 40 3024.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +87 48 3016.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +87 48 3016.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3031.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3031.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3034.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3053.4844 352.9375 moveto +P$14 +3054.9219 352.2656 moveto +P$2m +3070.1719 352.5469 moveto +P$1z +3071.7188 352.2656 moveto +P$1p +3082.8594 357.7188 moveto +P$1i +3085.0156 357.2656 moveto +P$1j +3092.0625 354.6406 moveto +P$1o +3094.8438 351.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3017.75 372 moveto +85 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3017.75 380 moveto +85 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +116 48 2716.5 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +115 47 2717 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +114 46 2717.5 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +113 45 2718 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +112 44 2718.5 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +111 43 2719 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +110 42 2719.5 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +109 41 2720 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +108 40 2720.5 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +116 48 2712.5 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +116 48 2712.5 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2727.5 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2727.5 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2730.4688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2749.2344 476.9375 moveto +P$14 +2750.6719 476.2656 moveto +P$2m +2765.9219 476.5469 moveto +P$1z +2767.4688 476.2656 moveto +P$1p +2778.6094 481.7188 moveto +P$1i +2780.7656 481.2656 moveto +P$1j +2787.8125 478.6406 moveto +P$1o +2790.5938 475.8906 moveto +P$2n +2796.4688 476.2656 moveto +P$1p +2807.3594 485.625 moveto +P$1q +2811.6719 484.0313 moveto +P$1e +2815.3438 481.7344 moveto +P$1f +2824.25 481.4688 moveto +P$1r +2823.1719 481.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2713.5 496 moveto +114 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2713.5 504 moveto +114 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +124 48 2861.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +123 47 2862 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +122 46 2862.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +121 45 2863 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +120 44 2863.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +119 43 2864 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +118 42 2864.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +117 41 2865 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +116 40 2865.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +124 48 2857.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +124 48 2857.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2872.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2872.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2875.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2894.2344 352.9375 moveto +P$14 +2898.1719 355.2031 moveto +P$1l +2898.1719 354.2969 moveto +P$1m +2909.0938 357.0469 moveto +P$1d +2912.7031 352.5938 moveto +P$1k +2922.25 357.4688 moveto +P$1r +2921.1719 357.1406 moveto +P$1s +2930.0938 357.0469 moveto +P$1d +2933.7031 352.5938 moveto +P$1k +2944.2344 352.9375 moveto +P$14 +2951.25 357.4688 moveto +P$1r +2950.1719 357.1406 moveto +P$1s +2959.0938 357.0469 moveto +P$1d +2962.7031 352.5938 moveto +P$1k +2972.25 357.4688 moveto +P$1r +2971.1719 357.1406 moveto +P$1s +2978.4375 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2858.5 372 moveto +122 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2858.5 380 moveto +122 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +125 48 3594.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +124 47 3595.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +123 46 3595.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +122 45 3596.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +121 44 3596.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +120 43 3597.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +119 42 3597.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +118 41 3598.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +117 40 3598.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +125 48 3590.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +125 48 3590.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3605.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3605.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3608.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3627.4844 600.9375 moveto +P$14 +3631.4219 603.2031 moveto +P$1l +3631.4219 602.2969 moveto +P$1m +3642.3438 605.0469 moveto +P$1d +3645.9531 600.5938 moveto +P$1k +3655.5 605.4688 moveto +P$1r +3654.4219 605.1406 moveto +P$1s +3663.3438 605.0469 moveto +P$1d +3666.9531 600.5938 moveto +P$1k +3672.1094 604.8438 moveto +P$1t +3672.1094 601.2344 moveto +P$1u +3670.9219 600.2656 moveto +P$1v +3678.7656 606.4219 moveto +P$1w +3681.4844 602.2969 moveto +P$1x +3692.3438 605.0469 moveto +P$1d +3699.2031 603.4531 moveto +P$18 +3695.5313 605.7344 moveto +P$19 +3702.875 599.8906 moveto +P$1g +3711.5 605.4688 moveto +P$1r +3710.4219 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3591.75 620 moveto +123 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3591.75 628 moveto +123 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +109 48 3759.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +108 47 3760.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +107 46 3760.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +106 45 3761.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +105 44 3761.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +104 43 3762.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +103 42 3762.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +102 41 3763.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +101 40 3763.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +109 48 3755.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +109 48 3755.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3770.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3770.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3773.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3792.4844 476.9375 moveto +P$14 +3796.4219 479.2031 moveto +P$1l +3796.4219 478.2969 moveto +P$1m +3807.3438 481.0469 moveto +P$1d +3810.9531 476.5938 moveto +P$1k +3820.5 481.4688 moveto +P$1r +3819.4219 481.1406 moveto +P$1s +3828.3438 481.0469 moveto +P$1d +3831.9531 476.5938 moveto +P$1k +3835.9219 476.2656 moveto +P$2i +3839.9531 476.5938 moveto +P$1k +3849.5 481.4688 moveto +P$1r +3848.4219 481.1406 moveto +P$1s +3856.9844 479.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3756.75 496 moveto +107 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3756.75 504 moveto +107 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +114 48 3755 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +113 47 3755.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +112 46 3756 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +111 45 3756.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +110 44 3757 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +109 43 3757.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +108 42 3758 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +107 41 3758.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +106 40 3759 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +114 48 3751 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +114 48 3751 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3766 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3766 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3768.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3787.7344 600.9375 moveto +P$14 +3791.6719 603.2031 moveto +P$1l +3791.6719 602.2969 moveto +P$1m +3802.5938 605.0469 moveto +P$1d +3806.2031 600.5938 moveto +P$1k +3815.75 605.4688 moveto +P$1r +3814.6719 605.1406 moveto +P$1s +3823.5938 605.0469 moveto +P$1d +3827.2031 600.5938 moveto +P$1k +3832.3594 601.2344 moveto +P$27 +3831.1719 600.2656 moveto +P$28 +3842.1094 605.7188 moveto +P$1i +3844.2656 605.2656 moveto +P$1j +3851.4531 605.6563 moveto +P$2g +3852.5313 608.2031 moveto +P$2h +3860.75 605.4688 moveto +P$1r +3859.6719 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3752 620 moveto +112 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3752 628 moveto +112 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +129 48 2956.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +128 47 2957.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +127 46 2957.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +126 45 2958.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +125 44 2958.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +124 43 2959.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +123 42 2959.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +122 41 2960.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +121 40 2960.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +129 48 2952.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +129 48 2952.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2967.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2967.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2970.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2989.4844 724.9375 moveto +P$14 +2993.4219 727.2031 moveto +P$1l +2993.4219 726.2969 moveto +P$1m +3004.3438 729.0469 moveto +P$1d +3007.9531 724.5938 moveto +P$1k +3017.5 729.4688 moveto +P$1r +3016.4219 729.1406 moveto +P$1s +3025.3438 729.0469 moveto +P$1d +3028.9531 724.5938 moveto +P$1k +3038.1719 724.5469 moveto +P$1z +3046.5 729.4688 moveto +P$1r +3045.4219 729.1406 moveto +P$1s +3053.6094 726.7031 moveto +P$1h +3056.9531 724.5938 moveto +P$1k +3060.875 726.4531 moveto +P$1b +3060.875 723.8906 moveto +P$1c +3066.4219 727.2031 moveto +P$1l +3066.4219 726.2969 moveto +P$1m +3077.3438 729.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2953.75 744 moveto +127 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2953.75 752 moveto +127 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +222 48 1248.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +221 47 1249 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +220 46 1249.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +219 45 1250 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +218 44 1250.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +217 43 1251 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +216 42 1251.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +215 41 1252 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +214 40 1252.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +222 48 1244.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +222 48 1244.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1259.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1259.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1262.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1281.2344 352.9375 moveto +P$14 +1285.1719 355.2031 moveto +P$1l +1285.1719 354.2969 moveto +P$1m +1296.0938 357.0469 moveto +P$1d +1299.7031 352.5938 moveto +P$1k +1309.25 357.4688 moveto +P$1r +1308.1719 357.1406 moveto +P$1s +1317.0938 357.0469 moveto +P$1d +1320.7031 352.5938 moveto +P$1k +1323.4688 352.2656 moveto +P$1p +1334.3594 361.625 moveto +P$1q +1338.6719 360.0313 moveto +P$1e +1342.3438 357.7344 moveto +P$1f +1351.25 357.4688 moveto +P$1r +1350.1719 357.1406 moveto +P$1s +1353.6719 352.2656 moveto +P$2j +1359.625 354.4531 moveto +P$1b +1359.625 351.8906 moveto +P$1c +1365.9531 351.8906 moveto +P$2o +1372.25 357.4688 moveto +P$1r +1371.1719 357.1406 moveto +P$1s +1379.3594 354.7031 moveto +P$1h +1384.3594 361.625 moveto +P$1q +1392.3594 354.7031 moveto +P$1h +1394.625 351.8906 moveto +P$1g +1403.25 357.4688 moveto +P$1r +1402.1719 357.1406 moveto +P$1s +1406.8594 353.2344 moveto +P$2p +1405.6719 352.2656 moveto +P$2q +1420.25 357.4688 moveto +P$1r +1419.1719 357.1406 moveto +P$1s +1425.9531 351.8906 moveto +P$2o +1426.625 354.4531 moveto +P$1b +1426.625 351.8906 moveto +P$1c +1435.0938 357.0469 moveto +P$1d +1437.625 354.4531 moveto +P$1b +1437.625 351.8906 moveto +P$1c +1441.7031 352.5938 moveto +P$1k +1445.625 354.4531 moveto +P$1b +1445.625 351.8906 moveto +P$1c +1451.1719 355.2031 moveto +P$1l +1451.1719 354.2969 moveto +P$1m +1462.0938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1245.5 372 moveto +220 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1245.5 380 moveto +220 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +224 48 1505.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +223 47 1506 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +222 46 1506.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +221 45 1507 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +220 44 1507.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +219 43 1508 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +218 42 1508.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +217 41 1509 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +216 40 1509.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +224 48 1501.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +224 48 1501.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1516.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1516.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1519.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1538.2344 352.9375 moveto +P$14 +1542.1719 355.2031 moveto +P$1l +1542.1719 354.2969 moveto +P$1m +1553.0938 357.0469 moveto +P$1d +1556.7031 352.5938 moveto +P$1k +1566.25 357.4688 moveto +P$1r +1565.1719 357.1406 moveto +P$1s +1574.0938 357.0469 moveto +P$1d +1577.7031 352.5938 moveto +P$1k +1580.4688 352.2656 moveto +P$1p +1591.3594 361.625 moveto +P$1q +1595.6719 360.0313 moveto +P$1e +1599.3438 357.7344 moveto +P$1f +1608.25 357.4688 moveto +P$1r +1607.1719 357.1406 moveto +P$1s +1609.9063 352.2656 moveto +P$15 +1624.1719 355.2031 moveto +P$1l +1624.1719 354.2969 moveto +P$1m +1633.4375 355.4531 moveto +P$1y +1634.5938 351.8906 moveto +P$2n +1644.9531 351.8906 moveto +P$2o +1645.625 351.8906 moveto +P$1g +1651.1719 355.2031 moveto +P$1l +1651.1719 354.2969 moveto +P$1m +1656 354.4531 moveto P$2r -11193.55 357.4688 moveto +1664.4688 352.2656 moveto +P$1p +1678.25 357.4688 moveto +P$1r +1677.1719 357.1406 moveto P$1s -11192.4719 357.1406 moveto -P$1t -11199.7375 355.4531 moveto -P$1j -11205.1125 354.6406 moveto -P$17 -11207.925 354.4531 moveto -P$18 -11207.925 351.8906 moveto -P$19 -11213.4719 355.2031 moveto -P$1w -11213.4719 354.2969 moveto -P$1x -11224.3938 357.0469 moveto -P$1z -11232.55 357.4688 moveto -P$1s -11231.4719 357.1406 moveto -P$1t -11239.2531 355.4531 moveto +1685.7344 355.7188 moveto +P$1a +1692.6719 360.0313 moveto +P$1e +1696.3438 357.7344 moveto P$1f -11235.5813 357.7344 moveto +1699.625 351.8906 moveto P$1g -11245.9094 353.4375 moveto -P$1b -11245.2375 352.2656 moveto -P$1c -11257.5344 352.9375 moveto -P$1l -11264.2219 352.5469 moveto -P$1m -11270.5344 353.0625 moveto -P$1n -11270.5344 352.1094 moveto -P$1o -11280.6438 357.7344 moveto -P$1p -11276.9719 355.4531 moveto -P$1q -11283.925 354.4531 moveto -P$1r -11283.925 351.8906 moveto -P$19 -11292.55 357.4688 moveto -P$1s -11291.4719 357.1406 moveto -P$1t -11299.6594 354.7031 moveto -P$1a -11303.0031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11150.8 372 moveto -157 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11150.8 380 moveto -157 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -121 48 11475.8 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -120 47 11476.3 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -119 46 11476.8 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -118 45 11477.3 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -117 44 11477.8 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -116 43 11478.3 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -115 42 11478.8 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -114 41 11479.3 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -113 40 11479.8 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -121 48 11471.8 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -121 48 11471.8 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11486.8 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11486.8 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11489.7688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11503.1594 604.8438 moveto -P$12 -11503.1594 601.2344 moveto -P$13 -11501.9719 600.2656 moveto -P$14 -11509.925 599.8906 moveto -P$1k -11515.4719 603.2031 moveto -P$1w -11515.4719 602.2969 moveto -P$1x -11525.6438 605.7344 moveto -P$1p -11521.9719 603.4531 moveto -P$1q -11532.5344 601.0625 moveto -P$1n -11532.5344 600.1094 moveto -P$1o -11538.9719 608.0313 moveto -P$1y -11542.6438 605.7344 moveto -P$1p -11551.55 605.4688 moveto -P$1s -11550.4719 605.1406 moveto -P$1t -11557.7375 603.4531 moveto -P$1j -11561.9094 605.7188 moveto -P$15 -11564.0656 605.2656 moveto -P$16 -11568.0031 600.5938 moveto -P$1h -11571.925 602.4531 moveto -P$18 -11571.925 599.8906 moveto -P$19 -11577.4719 603.2031 moveto -P$1w -11577.4719 602.2969 moveto -P$1x -11588.3938 605.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11472.8 620 moveto -119 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11472.8 628 moveto -119 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -121 48 11631.8 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -120 47 11632.3 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -119 46 11632.8 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -118 45 11633.3 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -117 44 11633.8 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -116 43 11634.3 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -115 42 11634.8 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -114 41 11635.3 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -113 40 11635.8 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -121 48 11627.8 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -121 48 11627.8 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11642.8 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11642.8 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11645.7688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11664.5344 600.9375 moveto -P$1l -11665.925 599.8906 moveto -P$1k -11671.4719 603.2031 moveto -P$1w -11671.4719 602.2969 moveto -P$1x -11681.6438 605.7344 moveto -P$1p -11677.9719 603.4531 moveto -P$1q -11688.5344 601.0625 moveto -P$1n -11688.5344 600.1094 moveto -P$1o -11694.9719 608.0313 moveto -P$1y -11698.6438 605.7344 moveto -P$1p -11707.55 605.4688 moveto -P$1s -11706.4719 605.1406 moveto -P$1t -11713.7375 603.4531 moveto -P$1j -11717.9094 605.7188 moveto -P$15 -11720.0656 605.2656 moveto -P$16 -11724.0031 600.5938 moveto -P$1h -11727.925 602.4531 moveto -P$18 -11727.925 599.8906 moveto -P$19 -11733.4719 603.2031 moveto -P$1w -11733.4719 602.2969 moveto -P$1x -11744.3938 605.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11628.8 620 moveto -119 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11628.8 628 moveto -119 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -150 48 11347.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -149 47 11348 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -148 46 11348.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -147 45 11349 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -146 44 11349.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -145 43 11350 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -144 42 11350.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -143 41 11351 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -142 40 11351.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -150 48 11343.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -150 48 11343.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11358.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11358.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11361.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11374.8594 353.2344 moveto -P$2m -11373.6719 352.2656 moveto -P$2n -11385.6094 357.7188 moveto -P$15 -11387.7656 357.2656 moveto -P$16 -11391.7031 352.5938 moveto -P$1h -11398.6094 357.7188 moveto -P$15 -11400.7656 357.2656 moveto -P$16 -11407.2344 353.0625 moveto -P$1n -11407.2344 352.1094 moveto -P$1o -11417.3438 357.7344 moveto -P$1p -11413.6719 355.4531 moveto -P$1q -11420.625 354.4531 moveto -P$1r -11420.625 351.8906 moveto -P$19 -11429.25 357.4688 moveto -P$1s -11428.1719 357.1406 moveto -P$1t -11436.3594 354.7031 moveto -P$1a -11439.7031 352.5938 moveto -P$1h -11450.2344 352.9375 moveto -P$1l -11457.0938 357.0469 moveto -P$29 -11462.6094 357.7188 moveto -P$15 -11464.7656 357.2656 moveto -P$16 -11473.0938 357.0469 moveto -P$1z -11479.9531 357.6563 moveto -P$2c -11481.0313 360.2031 moveto -P$2d -11489.25 357.4688 moveto -P$1s -11488.1719 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11344.5 372 moveto -148 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11344.5 380 moveto -148 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -96 48 11657 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -95 47 11657.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -94 46 11658 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -93 45 11658.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -92 44 11659 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -91 43 11659.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -90 42 11660 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -89 41 11660.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -88 40 11661 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -96 48 11653 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -96 48 11653 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11668 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11668 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11670.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11683.1719 352.2656 moveto -P$20 -11690.3594 354.4531 moveto -P$2b -11702.75 357.4688 moveto -P$1s -11701.6719 357.1406 moveto -P$1t -11710.5938 357.0469 moveto -P$1z -11714.2031 352.5938 moveto -P$1h -11716.9688 352.2656 moveto +1705.6094 357.7188 moveto P$1i -11727.8594 361.625 moveto -P$24 -11732.1719 360.0313 moveto -P$1y -11735.8438 357.7344 moveto -P$1p -11744.75 357.4688 moveto +1707.7656 357.2656 moveto +P$1j +1711.7031 352.5938 moveto +P$1k +1721.25 357.4688 moveto +P$1r +1720.1719 357.1406 moveto P$1s -11743.6719 357.1406 moveto -P$1t fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11654 372 moveto -94 0 rlineto +1502.5 372 moveto +222 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11654 380 moveto -94 0 rlineto +1502.5 380 moveto +222 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -142 48 11298 592 1 roundrect +88 48 3731.5 716 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -141 47 11298.5 592.5 1 roundrect +87 47 3732 716.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -140 46 11299 593 1 roundrect +86 46 3732.5 717 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -139 45 11299.5 593.5 1 roundrect +85 45 3733 717.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -138 44 11300 594 1 roundrect +84 44 3733.5 718 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -137 43 11300.5 594.5 1 roundrect +83 43 3734 718.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -136 42 11301 595 1 roundrect +82 42 3734.5 719 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -135 41 11301.5 595.5 1 roundrect +81 41 3735 719.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -134 40 11302 596 1 roundrect +80 40 3735.5 720 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -142 48 11294 588 simplerect +88 48 3727.5 712 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -142 48 11294 588 simplerect +88 48 3727.5 712 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -11309 604 11 0 360 arc +3742.5 728 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11309 604 11 0 360 arc +3742.5 728 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -11311.9688 609.6406 moveto -P$11 +3745.4688 733.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -11330.1406 607.7656 moveto -P$1v -11338.75 605.4688 moveto -P$1s -11337.6719 605.1406 moveto -P$1t -11346.5938 605.0469 moveto -P$1z -11354.75 605.4688 moveto -P$1s -11353.6719 605.1406 moveto -P$1t -11360.9375 603.4531 moveto -P$1j -11362.125 602.4531 moveto -P$18 -11362.125 599.8906 moveto -P$19 -11369.8594 602.7031 moveto -P$1a -11375.7344 601.0625 moveto -P$1n -11375.7344 600.1094 moveto -P$1o -11382.1719 608.0313 moveto -P$1y -11385.8438 605.7344 moveto -P$1p -11394.75 605.4688 moveto -P$1s -11393.6719 605.1406 moveto -P$1t -11400.9375 603.4531 moveto -P$1j -11405.1094 605.7188 moveto -P$15 -11407.2656 605.2656 moveto -P$16 -11411.2031 600.5938 moveto -P$1h -11415.125 602.4531 moveto -P$18 -11415.125 599.8906 moveto -P$19 -11420.6719 603.2031 moveto -P$1w -11420.6719 602.2969 moveto -P$1x -11431.5938 605.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11295 620 moveto -140 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11295 628 moveto -140 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -90 48 11532 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -89 47 11532.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -88 46 11533 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -87 45 11533.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -86 44 11534 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -85 43 11534.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -84 42 11535 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -83 41 11535.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -82 40 11536 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -90 48 11528 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -90 48 11528 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11543 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11543 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11545.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11558.1719 352.2656 moveto +3757.6719 724.2656 moveto P$2s -11564.1094 357.7188 moveto -P$15 -11566.2656 357.2656 moveto -P$16 -11568.3594 354.4531 moveto -P$2b -11578.1094 357.7188 moveto -P$15 -11580.2656 357.2656 moveto -P$16 -11589.7344 352.9375 moveto -P$1l -11591.125 351.8906 moveto -P$1k -11597.1094 357.7188 moveto -P$15 -11599.2656 357.2656 moveto -P$16 -11606.3125 354.6406 moveto -P$17 -11613.3125 354.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11529 372 moveto -88 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11529 380 moveto -88 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -94 48 11509 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -93 47 11509.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -92 46 11510 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -91 45 11510.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -90 44 11511 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -89 43 11511.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -88 42 11512 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -87 41 11512.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -86 40 11513 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -94 48 11505 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -94 48 11505 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11520 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11520 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11522.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11538.7344 477.0625 moveto -P$1n -11538.7344 476.1094 moveto -P$1o -11545.1719 484.0313 moveto -P$1y -11548.8438 481.7344 moveto -P$1p -11557.75 481.4688 moveto -P$1s -11556.6719 481.1406 moveto -P$1t -11563.9375 479.4531 moveto -P$1j -11568.1094 481.7188 moveto -P$15 -11570.2656 481.2656 moveto -P$16 -11574.2031 476.5938 moveto -P$1h -11578.125 478.4531 moveto -P$18 -11578.125 475.8906 moveto -P$19 -11583.6719 479.2031 moveto -P$1w -11583.6719 478.2969 moveto -P$1x -11594.5938 481.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11506 496 moveto -92 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11506 504 moveto -92 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -55 48 11207.8 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -54 47 11208.3 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -53 46 11208.8 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -52 45 11209.3 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -51 44 11209.8 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -50 43 11210.3 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -49 42 11210.8 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -48 41 11211.3 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -47 40 11211.8 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -55 48 11203.8 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -55 48 11203.8 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11218.8 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11218.8 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11221.7688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11232.7688 600.2656 moveto -P$1i -11243.9094 605.7188 moveto -P$15 -11246.0656 605.2656 moveto -P$16 -11253.2531 605.6563 moveto -P$2c -11254.3313 608.2031 moveto -P$2d -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11204.8 620 moveto -53 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11204.8 628 moveto -53 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -53 48 11301.8 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -52 47 11302.3 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -51 46 11302.8 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -50 45 11303.3 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -49 44 11303.8 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -48 43 11304.3 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -47 42 11304.8 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -46 41 11305.3 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -45 40 11305.8 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -53 48 11297.8 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -53 48 11297.8 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11312.8 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11312.8 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11315.7688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11326.7688 476.2656 moveto -P$1i -11340.3938 478.4531 moveto -P$28 -11346.3938 481.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11298.8 496 moveto -51 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11298.8 504 moveto -51 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -90 48 11809 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -89 47 11809.5 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -88 46 11810 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -87 45 11810.5 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -86 44 11811 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -85 43 11811.5 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -84 42 11812 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -83 41 11812.5 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -82 40 11813 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -90 48 11805 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -90 48 11805 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11820 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11820 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11822.9688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11835.0469 228.2656 moveto -P$1u -11848.3125 230.6406 moveto -P$17 -11856.75 233.4688 moveto -P$1s -11855.6719 233.1406 moveto -P$1t -11862.9375 231.4531 moveto -P$1j -11862.9688 228.2656 moveto -P$1i -11874.1094 233.7188 moveto -P$15 -11876.2656 233.2656 moveto -P$16 -11883.3125 230.6406 moveto -P$17 -11886.0938 227.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11806 248 moveto -88 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11806 256 moveto -88 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -145 48 11809.8 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -144 47 11810.3 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -143 46 11810.8 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -142 45 11811.3 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -141 44 11811.8 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -140 43 11812.3 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -139 42 11812.8 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -138 41 11813.3 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -137 40 11813.8 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -145 48 11805.8 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -145 48 11805.8 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11820.8 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11820.8 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11823.7688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11835.2063 352.2656 moveto -P$2o -11849.4719 355.2031 moveto -P$1w -11849.4719 354.2969 moveto -P$1x -11858.7375 355.4531 moveto -P$1j -11859.8938 351.8906 moveto -P$2k -11870.2531 351.8906 moveto -P$2l -11870.925 351.8906 moveto -P$1k -11876.4719 355.2031 moveto -P$1w -11876.4719 354.2969 moveto -P$1x -11881.3 354.4531 moveto -P$2p -11889.7688 352.2656 moveto -P$1i -11903.55 357.4688 moveto -P$1s -11902.4719 357.1406 moveto -P$1t -11911.0344 355.7188 moveto -P$21 -11917.9719 360.0313 moveto -P$1y -11921.6438 357.7344 moveto -P$1p -11924.925 351.8906 moveto -P$1k -11930.9094 357.7188 moveto -P$15 -11933.0656 357.2656 moveto -P$16 -11937.0031 352.5938 moveto -P$1h -11946.55 357.4688 moveto -P$1s -11945.4719 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11806.8 372 moveto -143 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11806.8 380 moveto -143 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -61 48 11947.8 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -60 47 11948.3 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -59 46 11948.8 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -58 45 11949.3 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -57 44 11949.8 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -56 43 11950.3 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -55 42 11950.8 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -54 41 11951.3 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -53 40 11951.8 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -61 48 11943.8 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -61 48 11943.8 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11958.8 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11958.8 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11961.7688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11972.7688 104.2656 moveto -P$1i -11983.9094 109.7188 moveto -P$15 -11986.0656 109.2656 moveto -P$16 -11993.1125 106.6406 moveto -P$17 -11995.8938 103.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11944.8 124 moveto -59 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11944.8 132 moveto -59 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -120 48 12057.5 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -119 47 12058 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -118 46 12058.5 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -117 45 12059 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -116 44 12059.5 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -115 43 12060 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -114 42 12060.5 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -113 41 12061 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -112 40 12061.5 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -120 48 12053.5 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -120 48 12053.5 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -12068.5 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12068.5 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12071.4688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12082.4688 228.2656 moveto -P$1i -12093.6094 233.7188 moveto -P$15 -12095.7656 233.2656 moveto -P$16 -12102.8125 230.6406 moveto -P$17 -12105.5938 227.8906 moveto -P$2k -12119.2344 228.9375 moveto -P$1l -12123.1719 231.2031 moveto -P$1w -12123.1719 230.2969 moveto -P$1x -12133.7344 231.7188 moveto -P$21 -12144.7344 231.7188 moveto -P$21 -12156.25 233.4688 moveto -P$1s -12155.1719 233.1406 moveto -P$1t -12164.0938 233.0469 moveto -P$1z -12167.7031 228.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12054.5 248 moveto -118 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12054.5 256 moveto -118 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -87 48 11934.8 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -86 47 11935.3 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -85 46 11935.8 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -84 45 11936.3 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -83 44 11936.8 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -82 43 11937.3 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -81 42 11937.8 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -80 41 11938.3 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -79 40 11938.8 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -87 48 11930.8 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -87 48 11930.8 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11945.8 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11945.8 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11948.7688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11960.2063 228.2656 moveto -P$2o -11974.4719 231.2031 moveto -P$1w -11974.4719 230.2969 moveto -P$1x -11983.7375 231.4531 moveto -P$1j -11984.8938 227.8906 moveto -P$2k -11995.2531 227.8906 moveto -P$2l -11995.925 227.8906 moveto -P$1k -12001.4719 231.2031 moveto -P$1w -12001.4719 230.2969 moveto -P$1x -12006.3 230.4531 moveto -P$2p -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11931.8 248 moveto -85 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11931.8 256 moveto -85 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -125 48 11837.8 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -124 47 11838.3 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -123 46 11838.8 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -122 45 11839.3 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -121 44 11839.8 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -120 43 11840.3 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -119 42 11840.8 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -118 41 11841.3 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -117 40 11841.8 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -125 48 11833.8 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -125 48 11833.8 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11848.8 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11848.8 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11851.7688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11870.5344 1004.9375 moveto -P$1l -11877.3938 1009.0469 moveto -P$29 -11882.9094 1009.7188 moveto -P$15 -11885.0656 1009.2656 moveto -P$16 -11891.7375 1007.4531 moveto -P$1j -11897.1125 1006.6406 moveto -P$17 -11905.55 1009.4688 moveto -P$1s -11904.4719 1009.1406 moveto -P$1t -11909.0031 1004.5938 moveto -P$1h -11913.0813 1011.5313 moveto -P$2t -11916.9719 1004.2656 moveto -P$2g -11925.4719 1007.2031 moveto -P$1w -11925.4719 1006.2969 moveto -P$1x -11935.6594 1006.7031 moveto -P$1a -11940.9094 1009.7188 moveto -P$15 -11943.0656 1009.2656 moveto -P$16 -11945.925 1003.8906 moveto -P$1k -11954.55 1009.4688 moveto -P$1s -11953.4719 1009.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11834.8 1024 moveto -123 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11834.8 1032 moveto -123 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -110 48 7715 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -109 47 7715.5 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -108 46 7716 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -107 45 7716.5 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -106 44 7717 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -105 43 7717.5 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -104 42 7718 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -103 41 7718.5 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -102 40 7719 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -110 48 7711 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -110 48 7711 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7726 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7726 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7728.9688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7741.1719 724.2656 moveto -P$2q -7750.6719 727.2031 moveto -P$1w -7750.6719 726.2969 moveto -P$1x -7759.9375 727.4531 moveto -P$1j -7766.2344 727.7188 moveto -P$21 -7777.4219 724.5469 moveto -P$1m -7785.75 729.4688 moveto -P$1s -7784.6719 729.1406 moveto -P$1t -7792.8594 726.7031 moveto -P$1a -7796.2031 724.5938 moveto -P$1h -7800.125 726.4531 moveto -P$18 -7800.125 723.8906 moveto -P$19 -7805.6719 727.2031 moveto -P$1w -7805.6719 726.2969 moveto -P$1x -7816.5938 729.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7712 744 moveto -108 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7712 752 moveto -108 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -104 48 7715 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -103 47 7715.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -102 46 7716 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -101 45 7716.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -100 44 7717 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -99 43 7717.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -98 42 7718 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -97 41 7718.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -96 40 7719 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -104 48 7711 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -104 48 7711 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7726 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7726 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7728.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7747.7344 600.9375 moveto -P$1l -7751.6719 603.2031 moveto -P$1w -7751.6719 602.2969 moveto -P$1x -7762.2344 603.7188 moveto -P$21 -7769.1719 608.0313 moveto -P$1y -7772.8438 605.7344 moveto -P$1p -7778.6719 603.2031 moveto -P$1w -7778.6719 602.2969 moveto -P$1x -7789.5938 605.0469 moveto -P$1z -7797.75 605.4688 moveto -P$1s -7796.6719 605.1406 moveto -P$1t -7805.5938 605.0469 moveto -P$1z -7809.2031 600.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7712 620 moveto -102 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7712 628 moveto -102 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -140 48 7950 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -139 47 7950.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -138 46 7951 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -137 45 7951.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -136 44 7952 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -135 43 7952.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -134 42 7953 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -133 41 7953.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -132 40 7954 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -140 48 7946 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -140 48 7946 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7961 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7961 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7963.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7977.3594 865.2344 moveto -P$2m -7976.1719 864.2656 moveto -P$2n -7988.1094 869.7188 moveto -P$15 -7990.2656 869.2656 moveto -P$16 -7994.2031 864.5938 moveto -P$1h -8001.1094 869.7188 moveto -P$15 -8003.2656 869.2656 moveto -P$16 -8007.3594 865.2344 moveto -P$2m -8006.1719 864.2656 moveto -P$2n -8018.9375 867.4531 moveto -P$1j -8020.125 866.4531 moveto -P$18 -8020.125 863.8906 moveto -P$19 -8022.3594 866.4531 moveto -P$2b -8034.75 869.4688 moveto -P$1s -8033.6719 869.1406 moveto -P$1t -8042.5938 869.0469 moveto -P$1z -8050.4219 864.5469 moveto -P$1m -8058.75 869.4688 moveto -P$1s -8057.6719 869.1406 moveto -P$1t -8061.125 863.8906 moveto -P$1k -8069.75 869.4688 moveto -P$1s -8068.6719 869.1406 moveto -P$1t -8076.8594 866.7031 moveto -P$1a -8080.2031 864.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7947 884 moveto -138 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7947 892 moveto -138 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -82 48 7991 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -81 47 7991.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -80 46 7992 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -79 45 7992.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -78 44 7993 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -77 43 7993.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -76 42 7994 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -75 41 7994.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -74 40 7995 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -82 48 7987 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -82 48 7987 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8002 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8002 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8004.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8017.1719 600.2656 moveto -P$2g -8023.125 602.4531 moveto -P$18 -8023.125 599.8906 moveto -P$19 -8030.3125 602.6406 moveto -P$17 -8034.2031 600.5938 moveto -P$1h -8043.75 605.4688 moveto -P$1s -8042.6719 605.1406 moveto -P$1t -8051.5938 605.0469 moveto -P$1z -8059.75 605.4688 moveto -P$1s -8058.6719 605.1406 moveto -P$1t -8065.9375 603.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7988 620 moveto -80 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7988 628 moveto -80 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -103 48 8108.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -102 47 8109.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -101 46 8109.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -100 45 8110.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -99 44 8110.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -98 43 8111.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -97 42 8111.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -96 41 8112.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -95 40 8112.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -103 48 8104.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -103 48 8104.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8119.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8119.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8122.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8134.9219 600.2656 moveto -P$2j -8150.5 605.4688 moveto -P$1s -8149.4219 605.1406 moveto -P$1t -8153.9531 600.5938 moveto -P$1h -8160.8594 605.7188 moveto -P$15 -8163.0156 605.2656 moveto -P$16 -8169.4844 601.0625 moveto -P$1n -8169.4844 600.1094 moveto -P$1o -8179.5938 605.7344 moveto -P$1p -8175.9219 603.4531 moveto -P$1q -8182.875 602.4531 moveto +3764.625 726.4531 moveto +P$1b +3764.625 723.8906 moveto +P$1c +3767.625 723.8906 moveto +P$1g +3776.25 729.4688 moveto P$1r -8182.875 599.8906 moveto -P$19 -8191.5 605.4688 moveto +3775.1719 729.1406 moveto P$1s -8190.4219 605.1406 moveto -P$1t -8198.6094 602.7031 moveto -P$1a -8201.9531 600.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8105.75 620 moveto -101 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8105.75 628 moveto -101 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -101 48 7854.75 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -100 47 7855.25 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -99 46 7855.75 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -98 45 7856.25 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -97 44 7856.75 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -96 43 7857.25 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -95 42 7857.75 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -94 41 7858.25 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -93 40 7858.75 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -101 48 7850.75 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -101 48 7850.75 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7865.75 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7865.75 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7868.7188 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7884.4844 601.0625 moveto -P$1n -7884.4844 600.1094 moveto +3781.6094 725.4375 moveto +P$16 +3780.9375 724.2656 moveto +P$17 +3790.8125 726.6406 moveto P$1o -7894.5938 605.7344 moveto -P$1p -7890.9219 603.4531 moveto -P$1q -7897.875 602.4531 moveto +3797.8125 726.6406 moveto +P$1o +3806.25 729.4688 moveto P$1r -7897.875 599.8906 moveto -P$19 -7906.5 605.4688 moveto +3805.1719 729.1406 moveto P$1s -7905.4219 605.1406 moveto -P$1t -7913.6094 602.7031 moveto -P$1a -7916.9531 600.5938 moveto -P$1h -7919.7188 600.2656 moveto -P$1i -7930.6094 609.625 moveto -P$24 -7934.9219 608.0313 moveto -P$1y -7938.5938 605.7344 moveto -P$1p -7947.5 605.4688 moveto -P$1s -7946.4219 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7851.75 620 moveto -99 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7851.75 628 moveto -99 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -73 48 7897.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -72 47 7898.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -71 46 7898.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -70 45 7899.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -69 44 7899.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -68 43 7900.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -67 42 7900.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -66 41 7901.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -65 40 7901.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -73 48 7893.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -73 48 7893.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7908.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7908.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7911.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7927.4844 725.0625 moveto -P$1n -7927.4844 724.1094 moveto -P$1o -7933.9219 732.0313 moveto -P$1y -7937.5938 729.7344 moveto -P$1p -7941.9531 724.5938 moveto -P$1h -7945.875 726.4531 moveto -P$18 -7945.875 723.8906 moveto -P$19 -7951.4219 727.2031 moveto -P$1w -7951.4219 726.2969 moveto -P$1x -7962.3438 729.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7894.75 744 moveto -71 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7894.75 752 moveto -71 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -162 48 8247 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -161 47 8247.5 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -160 46 8248 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -159 45 8248.5 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -158 44 8249 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -157 43 8249.5 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -156 42 8250 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -155 41 8250.5 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -154 40 8251 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -162 48 8243 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -162 48 8243 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8258 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8258 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8260.9688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8274.3594 601.2344 moveto -P$22 -8273.1719 600.2656 moveto -P$23 -8286.75 605.4688 moveto -P$1s -8285.6719 605.1406 moveto -P$1t -8292.9375 603.4531 moveto -P$1j -8298.3125 602.6406 moveto -P$17 -8301.125 602.4531 moveto -P$18 -8301.125 599.8906 moveto -P$19 -8308.3125 602.6406 moveto -P$17 -8312.2031 600.5938 moveto -P$1h -8321.75 605.4688 moveto -P$1s -8320.6719 605.1406 moveto -P$1t -8329.5938 605.0469 moveto -P$1z -8333.2031 600.5938 moveto -P$1h -8338.3594 601.2344 moveto -P$2m -8337.1719 600.2656 moveto -P$2n -8349.1094 605.7188 moveto -P$15 -8351.2656 605.2656 moveto -P$16 -8355.2031 600.5938 moveto -P$1h -8362.1094 605.7188 moveto -P$15 -8364.2656 605.2656 moveto -P$16 -8370.7344 601.0625 moveto -P$1n -8372.3906 608.8594 moveto -P$2u -8376.0156 606.4219 moveto -P$1d -8378.7344 602.2969 moveto -P$1e -8389.75 605.4688 moveto -P$1s -8388.6719 605.1406 moveto -P$1t -8395.9375 603.4531 moveto -P$1j -8399.8594 609.625 moveto -P$24 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8244 620 moveto -160 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8244 628 moveto -160 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -132 48 8125 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -131 47 8125.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -130 46 8126 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -129 45 8126.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -128 44 8127 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -127 43 8127.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -126 42 8128 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -125 41 8128.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -124 40 8129 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -132 48 8121 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -132 48 8121 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8136 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8136 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8138.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8152.3594 865.2344 moveto -P$22 -8151.1719 864.2656 moveto -P$23 -8162.9375 867.4531 moveto -P$1j -8166.6719 867.2031 moveto -P$1w -8166.6719 866.2969 moveto -P$1x -8176.8594 866.7031 moveto -P$1a -8184.75 869.4688 moveto -P$1s -8183.6719 869.1406 moveto -P$1t -8191.3125 866.6406 moveto -P$17 -8198.3125 866.6406 moveto -P$17 -8201.1719 864.2656 moveto -P$2g -8207.125 866.4531 moveto -P$18 -8207.125 863.8906 moveto -P$19 -8214.3125 866.6406 moveto -P$17 -8218.2031 864.5938 moveto -P$1h -8227.75 869.4688 moveto -P$1s -8226.6719 869.1406 moveto -P$1t -8235.5938 869.0469 moveto -P$1z -8243.75 869.4688 moveto -P$1s -8242.6719 869.1406 moveto -P$1t -8249.9375 867.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8122 884 moveto -130 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8122 892 moveto -130 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -75 48 8005.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -74 47 8006.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -73 46 8006.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -72 45 8007.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -71 44 8007.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -70 43 8008.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -69 42 8008.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -68 41 8009.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -67 40 8009.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -75 48 8001.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -75 48 8001.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8016.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8016.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8019.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8031.1563 724.2656 moveto -P$2o -8042.875 726.4531 moveto -P$18 -8042.875 723.8906 moveto -P$19 -8050.2031 727.4531 moveto -P$1f -8046.5313 729.7344 moveto -P$1g -8058.2031 729.6563 moveto -P$2c -8059.2813 732.2031 moveto -P$2d -8067.5 729.4688 moveto -P$1s -8066.4219 729.1406 moveto -P$1t -8070.9531 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8002.75 744 moveto -73 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8002.75 752 moveto -73 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -108 48 7807 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -107 47 7807.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -106 46 7808 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -105 45 7808.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -104 44 7809 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -103 43 7809.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -102 42 7810 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -101 41 7810.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -100 40 7811 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -108 48 7803 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -108 48 7803 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7818 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7818 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7820.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7832.4063 864.2656 moveto -P$2o -7844.125 866.4531 moveto -P$18 -7844.125 863.8906 moveto -P$19 -7851.4531 867.4531 moveto -P$1f -7847.7813 869.7344 moveto -P$1g -7859.4531 869.6563 moveto -P$2c -7860.5313 872.2031 moveto -P$2d -7868.75 869.4688 moveto -P$1s -7867.6719 869.1406 moveto -P$1t -7872.2031 864.5938 moveto -P$1h -7876.1719 864.2656 moveto -P$2g -7885.1094 869.7188 moveto -P$15 -7887.2656 869.2656 moveto -P$16 -7894.8438 869.7344 moveto -P$1p -7891.1719 867.4531 moveto -P$1q -7903.75 869.4688 moveto -P$1s -7902.6719 869.1406 moveto -P$1t -7906.125 863.8906 moveto +3809.7031 724.5938 moveto P$1k fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7804 884 moveto -106 0 rlineto +3728.5 744 moveto +86 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7804 892 moveto -106 0 rlineto +3728.5 752 moveto +86 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -116 48 5062.5 344 1 roundrect +71 48 2884.75 856 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -115 47 5063 344.5 1 roundrect +70 47 2885.25 856.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -114 46 5063.5 345 1 roundrect +69 46 2885.75 857 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -113 45 5064 345.5 1 roundrect +68 45 2886.25 857.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -112 44 5064.5 346 1 roundrect +67 44 2886.75 858 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -111 43 5065 346.5 1 roundrect +66 43 2887.25 858.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -110 42 5065.5 347 1 roundrect +65 42 2887.75 859 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -109 41 5066 347.5 1 roundrect +64 41 2888.25 859.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -108 40 5066.5 348 1 roundrect +63 40 2888.75 860 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -116 48 5058.5 340 simplerect +71 48 2880.75 852 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -116 48 5058.5 340 simplerect +71 48 2880.75 852 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -5073.5 356 11 0 360 arc +2895.75 868 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -5073.5 356 11 0 360 arc +2895.75 868 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -5076.4688 361.6406 moveto -P$11 +2898.7188 873.6406 moveto +P$13 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -5089.8594 353.2344 moveto -P$2m -5088.6719 352.2656 moveto -P$2n -5097.5156 358.4219 moveto -P$1d -5100.2344 354.2969 moveto -P$1e -5110.3438 357.7344 moveto -P$1p -5106.6719 355.4531 moveto -P$1q -5113.625 351.8906 moveto -P$1k -5116.625 354.4531 moveto -P$18 -5116.625 351.8906 moveto -P$19 -5125.0938 357.0469 moveto -P$1z -5134.2344 352.9375 moveto +2910.9219 864.2656 moveto +P$2s +2920.4219 867.2031 moveto P$1l -5138.1719 355.2031 moveto -P$1w -5138.1719 354.2969 moveto -P$1x -5147.4375 355.4531 moveto -P$1j -5154.25 357.4688 moveto -P$1s -5153.1719 357.1406 moveto -P$1t -5156.6719 352.2656 moveto -P$20 -5169.9219 352.5469 moveto +2920.4219 866.2969 moveto P$1m -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5059.5 372 moveto -114 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5059.5 380 moveto -114 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -126 48 5557 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -125 47 5557.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -124 46 5558 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -123 45 5558.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -122 44 5559 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -121 43 5559.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -120 42 5560 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -119 41 5560.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -118 40 5561 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -126 48 5553 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -126 48 5553 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -5568 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5568 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5570.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5583.1719 352.2656 moveto -P$2q -5590.125 354.4531 moveto -P$18 -5590.125 351.8906 moveto -P$19 -5593.125 351.8906 moveto -P$1k -5601.75 357.4688 moveto -P$1s -5600.6719 357.1406 moveto -P$1t -5607.1094 353.4375 moveto -P$1b -5606.4375 352.2656 moveto -P$1c -5613.2031 352.5938 moveto -P$1h -5618.2031 352.5938 moveto -P$1h -5625.1094 357.7188 moveto -P$15 -5627.2656 357.2656 moveto -P$16 -5634.8594 354.7031 moveto -P$1a -5642.5938 357.0469 moveto -P$29 -5650.2344 355.7188 moveto -P$21 -5661.75 357.4688 moveto -P$1s -5660.6719 357.1406 moveto -P$1t -5669.5938 357.0469 moveto -P$1z -5673.2031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5554 372 moveto -124 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5554 380 moveto -124 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -196 48 5718.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -195 47 5719 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -194 46 5719.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -193 45 5720 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -192 44 5720.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -191 43 5721 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -190 42 5721.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -189 41 5722 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -188 40 5722.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -196 48 5714.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -196 48 5714.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -5729.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5729.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5732.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5750.6406 359.7656 moveto -P$1v -5759.25 357.4688 moveto -P$1s -5758.1719 357.1406 moveto -P$1t -5767.0938 357.0469 moveto -P$1z -5775.25 357.4688 moveto -P$1s -5774.1719 357.1406 moveto -P$1t -5781.4375 355.4531 moveto -P$1j -5782.625 354.4531 moveto -P$18 -5782.625 351.8906 moveto -P$19 -5790.3594 354.7031 moveto -P$1a -5796.2344 353.0625 moveto -P$1n -5796.2344 352.1094 moveto -P$1o -5805.4375 355.4531 moveto -P$1j -5810.9531 357.6563 moveto -P$2c -5812.0313 360.2031 moveto -P$2d -5817.6094 357.7188 moveto -P$15 -5819.7656 357.2656 moveto -P$16 -5822.5469 352.2656 moveto -P$1u -5837.0938 357.0469 moveto -P$1z -5839.625 354.4531 moveto -P$18 -5839.625 351.8906 moveto -P$19 -5843.7031 352.5938 moveto -P$1h -5846.4688 352.2656 moveto -P$1i -5860.25 357.4688 moveto -P$1s -5859.1719 357.1406 moveto -P$1t -5868.0938 354.4531 moveto -P$28 -5869.7031 352.5938 moveto -P$1h -5876.6094 353.4375 moveto -P$1b -5875.9375 352.2656 moveto -P$1c -5885.8125 354.6406 moveto -P$17 -5892.8125 354.6406 moveto -P$17 -5901.25 357.4688 moveto -P$1s -5900.1719 357.1406 moveto -P$1t -5904.7031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5715.5 372 moveto -194 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5715.5 380 moveto -194 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -170 48 5352 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -169 47 5352.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -168 46 5353 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -167 45 5353.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -166 44 5354 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -165 43 5354.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -164 42 5355 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -163 41 5355.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -162 40 5356 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -170 48 5348 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -170 48 5348 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -5363 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5363 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5365.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5378.1719 352.2656 moveto -P$2e -5382.2031 352.5938 moveto -P$1h -5391.75 357.4688 moveto -P$1s -5390.6719 357.1406 moveto -P$1t -5399.2344 355.7188 moveto -P$21 -5405.1719 352.2656 moveto -P$2e -5413.2344 355.7188 moveto -P$21 -5422.1094 357.7188 moveto -P$15 -5424.2656 357.2656 moveto -P$16 -5431.4531 357.6563 moveto -P$2c -5432.5313 360.2031 moveto -P$2d -5440.75 357.4688 moveto -P$1s -5439.6719 357.1406 moveto -P$1t -5446.1094 353.4375 moveto -P$1b -5445.4375 352.2656 moveto -P$1c -5452.2031 352.5938 moveto -P$1h -5457.2031 352.5938 moveto -P$1h -5464.1094 357.7188 moveto -P$15 -5466.2656 357.2656 moveto -P$16 -5473.8594 354.7031 moveto -P$1a -5481.5938 357.0469 moveto -P$29 -5489.2344 355.7188 moveto -P$21 -5500.75 357.4688 moveto -P$1s -5499.6719 357.1406 moveto -P$1t -5508.5938 357.0469 moveto -P$1z -5512.2031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5349 372 moveto -168 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5349 380 moveto -168 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -69 48 5949.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -68 47 5950.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -67 46 5950.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -66 45 5951.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -65 44 5951.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -64 43 5952.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -63 42 5952.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -62 41 5953.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -61 40 5953.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -69 48 5945.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -69 48 5945.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -5960.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5960.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5963.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5975.9219 352.2656 moveto -P$25 -5987.4219 355.2031 moveto -P$1w -5987.4219 354.2969 moveto -P$1x -5993.9531 352.5938 moveto -P$1h -6003.5 357.4688 moveto -P$1s -6002.4219 357.1406 moveto -P$1t -6010.0625 354.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5946.75 372 moveto -67 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5946.75 380 moveto -67 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -104 48 5213 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -103 47 5213.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -102 46 5214 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -101 45 5214.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -100 44 5215 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -99 43 5215.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -98 42 5216 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -97 41 5216.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -96 40 5217 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -104 48 5209 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -104 48 5209 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -5224 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5224 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5226.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5243.3281 356.9063 moveto -P$26 -5240.3594 353.2344 moveto -P$27 -5252.75 357.4688 moveto -P$1s -5251.6719 357.1406 moveto -P$1t -5255.125 351.8906 moveto -P$1k -5261.1094 357.7188 moveto -P$15 -5263.2656 357.2656 moveto -P$16 -5267.2031 352.5938 moveto -P$1h -5276.75 357.4688 moveto -P$1s -5275.6719 357.1406 moveto -P$1t -5283.4531 355.4531 moveto -P$1f -5279.7813 357.7344 moveto +2925.875 863.8906 moveto P$1g -5287.1719 352.2656 moveto -P$2g -5293.125 354.4531 moveto +2933.2031 867.4531 moveto P$18 -5293.125 351.8906 moveto +2929.5313 869.7344 moveto P$19 -5301.5938 357.0469 moveto -P$1z -5304.0938 351.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5210 372 moveto -102 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5210 380 moveto -102 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -112 48 6054.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -111 47 6055 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -110 46 6055.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -109 45 6056 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -108 44 6056.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -107 43 6057 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -106 42 6057.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -105 41 6058 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -104 40 6058.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -112 48 6050.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -112 48 6050.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6065.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6065.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6068.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6084.8281 356.9063 moveto -P$26 -6081.8594 353.2344 moveto -P$27 -6094.25 357.4688 moveto +2942.5 869.4688 moveto +P$1r +2941.4219 869.1406 moveto P$1s -6093.1719 357.1406 moveto -P$1t -6096.625 351.8906 moveto -P$1k -6105.25 357.4688 moveto -P$1s -6104.1719 357.1406 moveto -P$1t -6110.6094 357.7188 moveto -P$15 -6112.7656 357.2656 moveto -P$16 -6116.7031 352.5938 moveto -P$1h -6126.25 357.4688 moveto -P$1s -6125.1719 357.1406 moveto -P$1t -6132.9531 355.4531 moveto -P$1f -6129.2813 357.7344 moveto -P$1g -6136.6719 352.2656 moveto -P$2g -6142.625 354.4531 moveto -P$18 -6142.625 351.8906 moveto -P$19 -6151.0938 357.0469 moveto -P$1z -6153.5938 351.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6051.5 372 moveto -110 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6051.5 380 moveto -110 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -56 48 5336.5 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -55 47 5337 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -54 46 5337.5 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -53 45 5338 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -52 44 5338.5 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -51 43 5339 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -50 42 5339.5 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -49 41 5340 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -48 40 5340.5 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -56 48 5332.5 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -56 48 5332.5 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -5347.5 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5347.5 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5350.4688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5362.6719 476.2656 moveto -P$2g -5368.625 478.4531 moveto -P$18 -5368.625 475.8906 moveto -P$19 -5377.0938 481.0469 moveto -P$1z -5379.5938 475.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5333.5 496 moveto -54 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5333.5 504 moveto -54 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -163 48 5427.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -162 47 5428.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -161 46 5428.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -160 45 5429.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -159 44 5429.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -158 43 5430.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -157 42 5430.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -156 41 5431.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -155 40 5431.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -163 48 5423.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -163 48 5423.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -5438.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5438.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5441.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -5458.0781 480.9063 moveto -P$26 -5455.1094 477.2344 moveto -P$27 -5467.5 481.4688 moveto -P$1s -5466.4219 481.1406 moveto -P$1t -5469.7656 482.4219 moveto -P$1d -5472.4844 478.2969 moveto -P$1e -5482.0625 478.6406 moveto -P$17 -5487.8594 481.7188 moveto -P$15 -5490.0156 481.2656 moveto -P$16 -5497.5938 481.7344 moveto -P$1p -5493.9219 479.4531 moveto -P$1q -5500.875 475.8906 moveto -P$1k -5509.5 481.4688 moveto -P$1s -5508.4219 481.1406 moveto -P$1t -5511.9219 476.2656 moveto -P$2e -5519.9844 479.7188 moveto -P$21 -5528.8594 481.7188 moveto -P$15 -5531.0156 481.2656 moveto -P$16 -5538.2031 481.6563 moveto -P$2c -5539.2813 484.2031 moveto -P$2d -5547.5 481.4688 moveto -P$1s -5546.4219 481.1406 moveto -P$1t -5552.8594 477.4375 moveto -P$1b -5552.1875 476.2656 moveto -P$1c -5562.0625 478.6406 moveto -P$17 -5569.0625 478.6406 moveto -P$17 -5577.5 481.4688 moveto -P$1s -5576.4219 481.1406 moveto -P$1t -5580.9531 476.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5424.75 496 moveto -161 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5424.75 504 moveto -161 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -62 48 4965.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -61 47 4966 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -60 46 4966.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -59 45 4967 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -58 44 4967.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -57 43 4968 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -56 42 4968.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -55 41 4969 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -54 40 4969.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -62 48 4961.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -62 48 4961.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -4976.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4976.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4979.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -4991.6719 352.2656 moveto -P$25 -5003.1719 355.2031 moveto -P$1w -5003.1719 354.2969 moveto -P$1x -5009.7031 352.5938 moveto -P$1h -5019.25 357.4688 moveto -P$1s -5018.1719 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4962.5 372 moveto -60 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4962.5 380 moveto -60 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -109 48 6055.75 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -108 47 6056.25 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -107 46 6056.75 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -106 45 6057.25 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -105 44 6057.75 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -104 43 6058.25 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -103 42 6058.75 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -102 41 6059.25 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -101 40 6059.75 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -109 48 6051.75 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -109 48 6051.75 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6066.75 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6066.75 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6069.7188 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6088.4844 476.9375 moveto -P$1l -6092.4219 479.2031 moveto -P$1w -6092.4219 478.2969 moveto -P$1x -6103.3438 481.0469 moveto -P$1z -6106.9531 476.5938 moveto -P$1h -6116.5 481.4688 moveto -P$1s -6115.4219 481.1406 moveto -P$1t -6124.3438 481.0469 moveto -P$1z -6127.9531 476.5938 moveto -P$1h -6131.9219 476.2656 moveto -P$2e -6135.9531 476.5938 moveto -P$1h -6145.5 481.4688 moveto -P$1s -6144.4219 481.1406 moveto -P$1t -6152.9844 479.7188 moveto -P$21 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6052.75 496 moveto -107 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6052.75 504 moveto -107 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -56 48 10996.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -55 47 10997 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -54 46 10997.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -53 45 10998 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -52 44 10998.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -51 43 10999 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -50 42 10999.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -49 41 11000 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -48 40 11000.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -56 48 10992.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -56 48 10992.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11007.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11007.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11010.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11022.6719 724.2656 moveto -P$2g -11028.625 726.4531 moveto -P$18 -11028.625 723.8906 moveto -P$19 -11037.0938 729.0469 moveto -P$1z -11039.5938 723.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10993.5 744 moveto -54 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10993.5 752 moveto -54 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -194 48 10767.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -193 47 10768 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -192 46 10768.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -191 45 10769 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -190 44 10769.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -189 43 10770 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -188 42 10770.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -187 41 10771 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -186 40 10771.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -194 48 10763.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -194 48 10763.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10778.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10778.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10781.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10799.6406 731.7656 moveto -P$1v -10808.25 729.4688 moveto -P$1s -10807.1719 729.1406 moveto -P$1t -10816.0938 729.0469 moveto -P$1z -10824.25 729.4688 moveto -P$1s -10823.1719 729.1406 moveto -P$1t -10830.4375 727.4531 moveto -P$1j -10831.625 726.4531 moveto -P$18 -10831.625 723.8906 moveto -P$19 -10839.3594 726.7031 moveto -P$1a -10845.2344 725.0625 moveto -P$1n -10845.2344 724.1094 moveto -P$1o -10854.4375 727.4531 moveto -P$1j -10859.9531 729.6563 moveto -P$2c -10861.0313 732.2031 moveto -P$2d -10866.6094 729.7188 moveto -P$15 -10868.7656 729.2656 moveto -P$16 -10877.0938 729.0469 moveto -P$1z -10879.625 726.4531 moveto -P$18 -10879.625 723.8906 moveto -P$19 -10882.1563 726.4531 moveto -P$2h -10890.6094 729.7188 moveto -P$15 -10892.7656 729.2656 moveto -P$16 -10896.7031 724.5938 moveto -P$1h -10900.625 726.4531 moveto -P$18 -10900.625 723.8906 moveto -P$19 -10906.1719 727.2031 moveto -P$1w -10906.1719 726.2969 moveto -P$1x -10917.0938 729.0469 moveto -P$1z -10922.6094 729.7188 moveto -P$15 -10924.7656 729.2656 moveto -P$16 -10927.625 723.8906 moveto -P$1k -10930.5469 724.2656 moveto -P$1u -10945.0938 729.0469 moveto -P$1z -10947.625 726.4531 moveto -P$18 -10947.625 723.8906 moveto -P$19 -10951.7031 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10764.5 744 moveto -192 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10764.5 752 moveto -192 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -112 48 9882.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -111 47 9883 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -110 46 9883.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -109 45 9884 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -108 44 9884.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -107 43 9885 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -106 42 9885.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -105 41 9886 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -104 40 9886.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -112 48 9878.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -112 48 9878.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9893.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9893.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9896.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9911.6094 725.4375 moveto -P$1b -9910.9375 724.2656 moveto -P$1c -9920.9531 727.4531 moveto -P$1f -9917.2813 729.7344 moveto -P$1g -9928.9531 727.4531 moveto -P$1f -9925.2813 729.7344 moveto -P$1g -9936.4375 727.4531 moveto -P$1j -9943.25 729.4688 moveto -P$1s -9942.1719 729.1406 moveto -P$1t -9949.8125 726.6406 moveto -P$17 -9956.8125 726.6406 moveto -P$17 -9958.4688 724.2656 moveto -P$1i -9969.3594 733.625 moveto -P$24 -9973.6719 732.0313 moveto +2948.6875 867.4531 moveto P$1y -9977.3438 729.7344 moveto -P$1p -9986.25 729.4688 moveto -P$1s -9985.1719 729.1406 moveto -P$1t fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9879.5 744 moveto -110 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9879.5 752 moveto -110 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -80 48 9547 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -79 47 9547.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -78 46 9548 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -77 45 9548.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -76 44 9549 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -75 43 9549.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -74 42 9550 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -73 41 9550.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -72 40 9551 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -80 48 9543 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -80 48 9543 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9558 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9558 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9560.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9576.1094 865.4375 moveto -P$1b -9575.4375 864.2656 moveto -P$1c -9585.4531 869.6563 moveto -P$2c -9586.5313 872.2031 moveto -P$2d -9594.75 869.4688 moveto -P$1s -9593.6719 869.1406 moveto -P$1t -9602.5938 869.0469 moveto -P$1z -9609.4531 867.4531 moveto -P$1f -9605.7813 869.7344 moveto -P$1g -9616.1094 869.7188 moveto -P$15 -9618.2656 869.2656 moveto -P$16 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9544 884 moveto -78 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9544 892 moveto -78 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -71 48 9338.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -70 47 9339.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -69 46 9339.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -68 45 9340.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -67 44 9340.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -66 43 9341.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -65 42 9341.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -64 41 9342.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -63 40 9342.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -71 48 9334.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -71 48 9334.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9349.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9349.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9352.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9367.8594 865.4375 moveto -P$1b -9367.1875 864.2656 moveto -P$1c -9376.6875 867.4531 moveto -P$1j -9378.9531 864.5938 moveto -P$1h -9382.875 866.4531 moveto -P$18 -9382.875 863.8906 moveto -P$19 -9390.6094 866.7031 moveto -P$1a -9392.875 863.8906 moveto -P$1k -9401.5 869.4688 moveto -P$1s -9400.4219 869.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9335.75 884 moveto +2881.75 884 moveto 69 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9335.75 892 moveto +2881.75 892 moveto 69 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -94 48 8654 716 1 roundrect +105 48 3216.75 716 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -93 47 8654.5 716.5 1 roundrect +104 47 3217.25 716.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -92 46 8655 717 1 roundrect +103 46 3217.75 717 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -91 45 8655.5 717.5 1 roundrect +102 45 3218.25 717.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -90 44 8656 718 1 roundrect +101 44 3218.75 718 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -89 43 8656.5 718.5 1 roundrect +100 43 3219.25 718.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -88 42 8657 719 1 roundrect +99 42 3219.75 719 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -87 41 8657.5 719.5 1 roundrect +98 41 3220.25 719.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -86 40 8658 720 1 roundrect +97 40 3220.75 720 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -94 48 8650 712 simplerect +105 48 3212.75 712 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -94 48 8650 712 simplerect +105 48 3212.75 712 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -8665 728 11 0 360 arc +3227.75 728 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8665 728 11 0 360 arc +3227.75 728 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -8667.9688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8681.3594 728.8438 moveto -P$12 -8681.3594 725.2344 moveto +3230.7188 733.6406 moveto P$13 -8680.1719 724.2656 moveto -P$14 -8690.6719 727.2031 moveto -P$1w -8690.6719 726.2969 moveto -P$1x -8698.6719 727.2031 moveto -P$1w -8698.6719 726.2969 moveto -P$1x -8704.0938 723.8906 moveto -P$2k -8716.2344 727.7188 moveto -P$21 -8725.1094 729.7188 moveto -P$15 -8727.2656 729.2656 moveto -P$16 -8733.9375 727.4531 moveto -P$1j -8735.0938 723.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8651 744 moveto -92 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8651 752 moveto -92 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -81 48 10302.8 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -80 47 10303.3 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -79 46 10303.8 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -78 45 10304.3 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -77 44 10304.8 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -76 43 10305.3 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -75 42 10305.8 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -74 41 10306.3 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -73 40 10306.8 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -81 48 10298.8 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -81 48 10298.8 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10313.8 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10313.8 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10316.7688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10335.5344 864.9375 moveto -P$1l -10339.4719 867.2031 moveto -P$1w -10339.4719 866.2969 moveto -P$1x -10350.3938 869.0469 moveto -P$1z -10354.0031 864.5938 moveto -P$1h -10360.9094 869.7188 moveto -P$15 -10363.0656 869.2656 moveto -P$16 -10370.6594 866.7031 moveto -P$1a -10374.0031 864.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10299.8 884 moveto -79 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10299.8 892 moveto -79 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -120 48 10383.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -119 47 10384 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -118 46 10384.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -117 45 10385 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -116 44 10385.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -115 43 10386 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -114 42 10386.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -113 41 10387 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -112 40 10387.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -120 48 10379.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -120 48 10379.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10394.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10394.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10397.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10416.2344 724.9375 moveto -P$1l -10420.1719 727.2031 moveto -P$1w -10420.1719 726.2969 moveto -P$1x -10431.0938 729.0469 moveto -P$1z -10434.7031 724.5938 moveto -P$1h -10444.25 729.4688 moveto -P$1s -10443.1719 729.1406 moveto -P$1t -10452.0938 729.0469 moveto -P$1z -10455.7031 724.5938 moveto -P$1h -10465.6406 731.7656 moveto -P$1v -10472.4375 727.4531 moveto -P$1j -10476.1719 727.2031 moveto -P$1w -10476.1719 726.2969 moveto -P$1x -10481.5156 730.4219 moveto -P$1d -10484.2344 726.2969 moveto -P$1e -10490.6719 732.0313 moveto -P$1y -10494.3438 729.7344 moveto -P$1p -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10380.5 744 moveto -118 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10380.5 752 moveto -118 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -192 48 10860 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -191 47 10860.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -190 46 10861 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -189 45 10861.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -188 44 10862 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -187 43 10862.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -186 42 10863 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -185 41 10863.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -184 40 10864 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -192 48 10856 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -192 48 10856 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10871 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10871 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10873.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10892.7344 864.9375 moveto -P$1l -10896.6719 867.2031 moveto -P$1w -10896.6719 866.2969 moveto -P$1x -10907.5938 869.0469 moveto -P$1z -10911.2031 864.5938 moveto -P$1h -10920.75 869.4688 moveto -P$1s -10919.6719 869.1406 moveto -P$1t -10928.5938 869.0469 moveto -P$1z -10932.2031 864.5938 moveto -P$1h -10942.1406 871.7656 moveto -P$1v -10948.9375 867.4531 moveto -P$1j -10952.6719 867.2031 moveto -P$1w -10952.6719 866.2969 moveto -P$1x -10958.0156 870.4219 moveto -P$1d -10960.7344 866.2969 moveto -P$1e -10967.1719 872.0313 moveto -P$1y -10970.8438 869.7344 moveto -P$1p -10977.1094 865.4375 moveto -P$1b -10976.4375 864.2656 moveto -P$1c -10986.3125 866.6406 moveto -P$17 -10993.3125 866.6406 moveto -P$17 -10998.6719 867.2031 moveto -P$1w -10998.6719 866.2969 moveto -P$1x -11008.8594 866.7031 moveto -P$1a -11011.125 866.4531 moveto -P$18 -11011.125 863.8906 moveto -P$19 -11017.1094 869.7188 moveto -P$15 -11019.2656 869.2656 moveto -P$16 -11023.2031 864.5938 moveto -P$1h -11027.125 866.4531 moveto -P$18 -11027.125 863.8906 moveto -P$19 -11032.6719 867.2031 moveto -P$1w -11032.6719 866.2969 moveto -P$1x -11043.5938 869.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10857 884 moveto -190 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10857 892 moveto -190 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -113 48 9461.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -112 47 9462.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -111 46 9462.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -110 45 9463.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -109 44 9463.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -108 43 9464.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -107 42 9464.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -106 41 9465.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -105 40 9465.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -113 48 9457.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -113 48 9457.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9472.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9472.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9475.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9489.1094 725.2344 moveto -P$2m -9487.9219 724.2656 moveto -P$2n -9502.5 729.4688 moveto -P$1s -9501.4219 729.1406 moveto -P$1t -9509.6094 726.7031 moveto -P$1a -9511.875 726.4531 moveto -P$18 -9511.875 723.8906 moveto -P$19 -9519.0625 726.6406 moveto -P$17 -9521.875 726.4531 moveto -P$18 -9521.875 723.8906 moveto -P$19 -9527.4219 727.2031 moveto -P$1w -9527.4219 726.2969 moveto -P$1x -9538.3438 729.0469 moveto -P$1z -9539.7188 724.2656 moveto -P$1i -9551.6875 727.4531 moveto -P$1j -9558.5 729.4688 moveto -P$1s -9557.4219 729.1406 moveto -P$1t -9566.5 729.4688 moveto -P$1s -9565.4219 729.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9458.75 744 moveto -111 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9458.75 752 moveto -111 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -160 48 8654 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -159 47 8654.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -158 46 8655 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -157 45 8655.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -156 44 8656 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -155 43 8656.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -154 42 8657 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -153 41 8657.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -152 40 8658 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -160 48 8650 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -160 48 8650 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8665 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8665 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8667.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8681.3594 865.2344 moveto -P$2m -8680.1719 864.2656 moveto -P$2n -8694.75 869.4688 moveto -P$1s -8693.6719 869.1406 moveto -P$1t -8701.8594 866.7031 moveto -P$1a -8704.125 866.4531 moveto -P$18 -8704.125 863.8906 moveto -P$19 -8711.3125 866.6406 moveto -P$17 -8714.125 866.4531 moveto -P$18 -8714.125 863.8906 moveto -P$19 -8719.6719 867.2031 moveto -P$1w -8719.6719 866.2969 moveto -P$1x -8730.5938 869.0469 moveto -P$1z -8731.9688 864.2656 moveto -P$1i -8743.9375 867.4531 moveto -P$1j -8750.75 869.4688 moveto -P$1s -8749.6719 869.1406 moveto -P$1t -8758.75 869.4688 moveto -P$1s -8757.6719 869.1406 moveto -P$1t -8766.4219 864.5469 moveto -P$1m -8774.75 869.4688 moveto -P$1s -8773.6719 869.1406 moveto -P$1t -8781.8594 866.7031 moveto -P$1a -8785.2031 864.5938 moveto -P$1h -8789.125 866.4531 moveto -P$18 -8789.125 863.8906 moveto -P$19 -8794.6719 867.2031 moveto -P$1w -8794.6719 866.2969 moveto -P$1x -8805.5938 869.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8651 884 moveto -158 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8651 892 moveto -158 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -154 48 10194 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -153 47 10194.5 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -152 46 10195 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -151 45 10195.5 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -150 44 10196 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -149 43 10196.5 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -148 42 10197 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -147 41 10197.5 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -146 40 10198 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -154 48 10190 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -154 48 10190 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10205 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10205 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10207.9688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10221.3594 725.2344 moveto -P$2m -10220.1719 724.2656 moveto -P$2n -10234.75 729.4688 moveto -P$1s -10233.6719 729.1406 moveto -P$1t -10241.8594 726.7031 moveto -P$1a -10244.125 726.4531 moveto -P$18 -10244.125 723.8906 moveto -P$19 -10251.3125 726.6406 moveto -P$17 -10254.125 726.4531 moveto -P$18 -10254.125 723.8906 moveto -P$19 -10259.6719 727.2031 moveto -P$1w -10259.6719 726.2969 moveto -P$1x -10270.5938 729.0469 moveto -P$1z -10271.9688 724.2656 moveto -P$1i -10283.9375 727.4531 moveto -P$1j -10290.75 729.4688 moveto -P$1s -10289.6719 729.1406 moveto -P$1t -10298.75 729.4688 moveto -P$1s -10297.6719 729.1406 moveto -P$1t -10304.7344 725.0625 moveto -P$1n -10304.7344 724.1094 moveto -P$1o -10311.1719 732.0313 moveto -P$1y -10314.8438 729.7344 moveto -P$1p -10319.2031 724.5938 moveto -P$1h -10323.125 726.4531 moveto -P$18 -10323.125 723.8906 moveto -P$19 -10328.6719 727.2031 moveto -P$1w -10328.6719 726.2969 moveto -P$1x -10339.5938 729.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10191 744 moveto -152 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10191 752 moveto -152 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -242 48 10025.5 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -241 47 10026 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -240 46 10026.5 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -239 45 10027 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -238 44 10027.5 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -237 43 10028 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -236 42 10028.5 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -235 41 10029 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -234 40 10029.5 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -242 48 10021.5 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -242 48 10021.5 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10036.5 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10036.5 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10039.4688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10052.8594 865.2344 moveto -P$2m -10051.6719 864.2656 moveto -P$2n -10066.25 869.4688 moveto -P$1s -10065.1719 869.1406 moveto -P$1t -10073.3594 866.7031 moveto -P$1a -10075.625 866.4531 moveto -P$18 -10075.625 863.8906 moveto -P$19 -10082.8125 866.6406 moveto -P$17 -10085.625 866.4531 moveto -P$18 -10085.625 863.8906 moveto -P$19 -10091.1719 867.2031 moveto -P$1w -10091.1719 866.2969 moveto -P$1x -10102.0938 869.0469 moveto -P$1z -10103.4688 864.2656 moveto -P$1i -10115.4375 867.4531 moveto -P$1j -10122.25 869.4688 moveto -P$1s -10121.1719 869.1406 moveto -P$1t -10130.25 869.4688 moveto -P$1s -10129.1719 869.1406 moveto -P$1t -10137.9219 864.5469 moveto -P$1m -10146.25 869.4688 moveto -P$1s -10145.1719 869.1406 moveto -P$1t -10153.3594 866.7031 moveto -P$1a -10156.7031 864.5938 moveto -P$1h -10160.625 866.4531 moveto -P$18 -10160.625 863.8906 moveto -P$19 -10166.1719 867.2031 moveto -P$1w -10166.1719 866.2969 moveto -P$1x -10177.0938 869.0469 moveto -P$1z -10183.2344 865.0625 moveto -P$1n -10183.2344 864.1094 moveto -P$1o -10189.6719 872.0313 moveto -P$1y -10193.3438 869.7344 moveto -P$1p -10197.7031 864.5938 moveto -P$1h -10201.625 866.4531 moveto -P$18 -10201.625 863.8906 moveto -P$19 -10207.1719 867.2031 moveto -P$1w -10207.1719 866.2969 moveto -P$1x -10218.0938 869.0469 moveto -P$1z -10219.4688 864.2656 moveto -P$1i -10230.6094 869.7188 moveto -P$15 -10232.7656 869.2656 moveto -P$16 -10239.4375 867.4531 moveto -P$1j -10244.9531 869.6563 moveto -P$2c -10246.0313 872.2031 moveto -P$2d -10254.25 869.4688 moveto -P$1s -10253.1719 869.1406 moveto -P$1t -10257.7031 864.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10022.5 884 moveto -240 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10022.5 892 moveto -240 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -67 48 9444.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -66 47 9445.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -65 46 9445.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -64 45 9446.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -63 44 9446.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -62 43 9447.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -61 42 9447.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -60 41 9448.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -59 40 9448.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -67 48 9440.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -67 48 9440.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9455.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9455.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9458.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9470.9219 864.2656 moveto -P$20 -9478.1094 866.4531 moveto -P$2b -9490.5 869.4688 moveto -P$1s -9489.4219 869.1406 moveto -P$1t -9498.3438 869.0469 moveto -P$1z -9501.9531 864.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9441.75 884 moveto -65 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9441.75 892 moveto -65 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -131 48 9135.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -130 47 9136.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -129 46 9136.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -128 45 9137.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -127 44 9137.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -126 43 9138.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -125 42 9138.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -124 41 9139.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -123 40 9139.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -131 48 9131.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -131 48 9131.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9146.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9146.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9149.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9167.8906 731.7656 moveto -P$1v -9176.5 729.4688 moveto -P$1s -9175.4219 729.1406 moveto -P$1t -9184.3438 729.0469 moveto -P$1z -9192.5 729.4688 moveto -P$1s -9191.4219 729.1406 moveto -P$1t -9198.6875 727.4531 moveto -P$1j -9199.875 726.4531 moveto -P$18 -9199.875 723.8906 moveto -P$19 -9207.6094 726.7031 moveto -P$1a -9212.8594 725.4375 moveto -P$1b -9212.1875 724.2656 moveto -P$1c -9222.2031 727.4531 moveto -P$1f -9218.5313 729.7344 moveto -P$1g -9230.2031 727.4531 moveto -P$1f -9226.5313 729.7344 moveto -P$1g -9237.6875 727.4531 moveto -P$1j -9244.5 729.4688 moveto -P$1s -9243.4219 729.1406 moveto -P$1t -9251.0625 726.6406 moveto -P$17 -9258.0625 726.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9132.75 744 moveto -129 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9132.75 752 moveto -129 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -174 48 10775 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -173 47 10775.5 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -172 46 10776 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -171 45 10776.5 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -170 44 10777 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -169 43 10777.5 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -168 42 10778 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -167 41 10778.5 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -166 40 10779 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -174 48 10771 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -174 48 10771 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10786 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10786 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10788.9688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10807.1406 1011.7656 moveto -P$1v -10815.75 1009.4688 moveto -P$1s -10814.6719 1009.1406 moveto -P$1t -10823.5938 1009.0469 moveto -P$1z -10831.75 1009.4688 moveto -P$1s -10830.6719 1009.1406 moveto -P$1t -10837.9375 1007.4531 moveto -P$1j -10839.125 1006.4531 moveto -P$18 -10839.125 1003.8906 moveto -P$19 -10846.8594 1006.7031 moveto -P$1a -10852.1094 1005.4375 moveto -P$1b -10851.4375 1004.2656 moveto -P$1c -10861.4531 1007.4531 moveto -P$1f -10857.7813 1009.7344 moveto -P$1g -10869.4531 1007.4531 moveto -P$1f -10865.7813 1009.7344 moveto -P$1g -10876.9375 1007.4531 moveto -P$1j -10883.75 1009.4688 moveto -P$1s -10882.6719 1009.1406 moveto -P$1t -10890.3125 1006.6406 moveto -P$17 -10897.3125 1006.6406 moveto -P$17 -10901.3594 1008.8438 moveto -P$12 -10901.3594 1005.2344 moveto -P$13 -10900.1719 1004.2656 moveto -P$14 -10908.0156 1010.4219 moveto -P$1d -10910.7344 1006.2969 moveto -P$1e -10921.5938 1009.0469 moveto -P$1z -10928.4531 1007.4531 moveto -P$1f -10924.7813 1009.7344 moveto -P$1g -10932.125 1003.8906 moveto -P$1k -10940.75 1009.4688 moveto -P$1s -10939.6719 1009.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10772 1024 moveto -172 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10772 1032 moveto -172 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -119 48 8981.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -118 47 8982.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -117 46 8982.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -116 45 8983.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -115 44 8983.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -114 43 8984.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -113 42 8984.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -112 41 8985.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -111 40 8985.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -119 48 8977.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -119 48 8977.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8992.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8992.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8995.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9013.8906 731.7656 moveto -P$1v -9022.5 729.4688 moveto -P$1s -9021.4219 729.1406 moveto -P$1t -9030.3438 729.0469 moveto -P$1z -9038.5 729.4688 moveto -P$1s -9037.4219 729.1406 moveto -P$1t -9044.6875 727.4531 moveto -P$1j -9045.875 726.4531 moveto -P$18 -9045.875 723.8906 moveto -P$19 -9053.6094 726.7031 moveto -P$1a -9058.8594 725.4375 moveto -P$1b -9058.1875 724.2656 moveto -P$1c -9067.6875 727.4531 moveto -P$1j -9069.9531 724.5938 moveto -P$1h -9073.875 726.4531 moveto -P$18 -9073.875 723.8906 moveto -P$19 -9081.6094 726.7031 moveto -P$1a -9083.875 723.8906 moveto -P$1k -9092.5 729.4688 moveto -P$1s -9091.4219 729.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8978.75 744 moveto -117 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8978.75 752 moveto -117 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -129 48 10029.8 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -128 47 10030.3 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -127 46 10030.8 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -126 45 10031.3 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -125 44 10031.8 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -124 43 10032.3 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -123 42 10032.8 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -122 41 10033.3 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -121 40 10033.8 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -129 48 10025.8 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -129 48 10025.8 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10040.8 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10040.8 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10043.7688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10061.9406 731.7656 moveto -P$1v -10070.55 729.4688 moveto -P$1s -10069.4719 729.1406 moveto -P$1t -10078.3938 729.0469 moveto -P$1z -10086.55 729.4688 moveto -P$1s -10085.4719 729.1406 moveto -P$1t -10092.7375 727.4531 moveto -P$1j -10093.925 726.4531 moveto -P$18 -10093.925 723.8906 moveto -P$19 -10101.6594 726.7031 moveto -P$1a -10110.5344 724.9375 moveto -P$1l -10114.4719 727.2031 moveto -P$1w -10114.4719 726.2969 moveto -P$1x -10125.3938 729.0469 moveto -P$1z -10129.0031 724.5938 moveto -P$1h -10135.9094 729.7188 moveto -P$15 -10138.0656 729.2656 moveto -P$16 -10145.6594 726.7031 moveto -P$1a -10149.0031 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10026.8 744 moveto -127 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10026.8 752 moveto -127 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -172 48 9781 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -171 47 9781.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -170 46 9782 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -169 45 9782.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -168 44 9783 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -167 43 9783.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -166 42 9784 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -165 41 9784.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -164 40 9785 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -172 48 9777 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -172 48 9777 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9792 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9792 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9794.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9813.1406 871.7656 moveto -P$1v -9821.75 869.4688 moveto -P$1s -9820.6719 869.1406 moveto -P$1t -9829.5938 869.0469 moveto -P$1z -9837.75 869.4688 moveto -P$1s -9836.6719 869.1406 moveto -P$1t -9843.9375 867.4531 moveto -P$1j -9845.125 866.4531 moveto -P$18 -9845.125 863.8906 moveto -P$19 -9852.8594 866.7031 moveto -P$1a -9861.7344 864.9375 moveto -P$1l -9865.6719 867.2031 moveto -P$1w -9865.6719 866.2969 moveto -P$1x -9876.5938 869.0469 moveto -P$1z -9880.2031 864.5938 moveto -P$1h -9887.1094 869.7188 moveto -P$15 -9889.2656 869.2656 moveto -P$16 -9896.8594 866.7031 moveto -P$1a -9900.2031 864.5938 moveto -P$1h -9905.3594 868.8438 moveto -P$12 -9905.3594 865.2344 moveto -P$13 -9904.1719 864.2656 moveto -P$14 -9912.0156 870.4219 moveto -P$1d -9914.7344 866.2969 moveto -P$1e -9925.5938 869.0469 moveto -P$1z -9932.4531 867.4531 moveto -P$1f -9928.7813 869.7344 moveto -P$1g -9936.125 863.8906 moveto -P$1k -9944.75 869.4688 moveto -P$1s -9943.6719 869.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9778 884 moveto -170 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9778 892 moveto -170 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -161 48 10469.8 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -160 47 10470.3 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -159 46 10470.8 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -158 45 10471.3 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -157 44 10471.8 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -156 43 10472.3 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -155 42 10472.8 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -154 41 10473.3 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -153 40 10473.8 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -161 48 10465.8 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -161 48 10465.8 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10480.8 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10480.8 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10483.7688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10501.9406 871.7656 moveto -P$1v -10510.55 869.4688 moveto -P$1s -10509.4719 869.1406 moveto -P$1t -10518.3938 869.0469 moveto -P$1z -10526.55 869.4688 moveto -P$1s -10525.4719 869.1406 moveto -P$1t -10532.7375 867.4531 moveto -P$1j -10533.925 866.4531 moveto -P$18 -10533.925 863.8906 moveto -P$19 -10541.6594 866.7031 moveto -P$1a -10550.5344 864.9375 moveto -P$1l -10554.4719 867.2031 moveto -P$1w -10554.4719 866.2969 moveto -P$1x -10565.3938 869.0469 moveto -P$1z -10569.0031 864.5938 moveto -P$1h -10575.9094 869.7188 moveto -P$15 -10578.0656 869.2656 moveto -P$16 -10585.6594 866.7031 moveto -P$1a -10589.0031 864.5938 moveto -P$1h -10592.9719 864.2656 moveto -P$20 -10606.3938 869.0469 moveto -P$1z -10610.0031 864.5938 moveto -P$1h -10617.7375 867.4531 moveto -P$1j -10621.6594 873.625 moveto -P$24 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10466.8 884 moveto -159 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10466.8 892 moveto -159 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -237 48 9609.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -236 47 9610.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -235 46 9610.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -234 45 9611.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -233 44 9611.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -232 43 9612.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -231 42 9612.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -230 41 9613.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -229 40 9613.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -237 48 9605.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -237 48 9605.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9620.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9620.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9623.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9641.8906 731.7656 moveto -P$1v -9650.5 729.4688 moveto -P$1s -9649.4219 729.1406 moveto -P$1t -9658.3438 729.0469 moveto -P$1z -9666.5 729.4688 moveto -P$1s -9665.4219 729.1406 moveto -P$1t -9672.6875 727.4531 moveto -P$1j -9673.875 726.4531 moveto -P$18 -9673.875 723.8906 moveto -P$19 -9681.6094 726.7031 moveto -P$1a -9687.4844 725.0625 moveto -P$1n -9687.4844 724.1094 moveto -P$1o -9696.6875 727.4531 moveto -P$1j -9702.2031 729.6563 moveto -P$2c -9703.2813 732.2031 moveto -P$2d -9708.8594 729.7188 moveto -P$15 -9711.0156 729.2656 moveto -P$16 -9719.3438 729.0469 moveto -P$1z -9721.875 726.4531 moveto -P$18 -9721.875 723.8906 moveto -P$19 -9724.4063 726.4531 moveto -P$2h -9732.8594 729.7188 moveto -P$15 -9735.0156 729.2656 moveto -P$16 -9738.9531 724.5938 moveto -P$1h -9742.875 726.4531 moveto -P$18 -9742.875 723.8906 moveto -P$19 -9748.4219 727.2031 moveto -P$1w -9748.4219 726.2969 moveto -P$1x -9759.3438 729.0469 moveto -P$1z -9764.8594 729.7188 moveto -P$15 -9767.0156 729.2656 moveto -P$16 -9769.875 723.8906 moveto -P$1k -9772.7969 724.2656 moveto -P$1u -9787.3438 729.0469 moveto -P$1z -9789.875 726.4531 moveto -P$18 -9789.875 723.8906 moveto -P$19 -9793.9531 724.5938 moveto -P$1h -9799.1094 728.8438 moveto -P$12 -9799.1094 725.2344 moveto -P$13 -9797.9219 724.2656 moveto -P$14 -9805.7656 730.4219 moveto -P$1d -9808.4844 726.2969 moveto -P$1e -9819.3438 729.0469 moveto -P$1z -9826.2031 727.4531 moveto -P$1f -9822.5313 729.7344 moveto -P$1g -9829.875 723.8906 moveto -P$1k -9838.5 729.4688 moveto -P$1s -9837.4219 729.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9606.75 744 moveto -235 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9606.75 752 moveto -235 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -124 48 9302.5 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -123 47 9303 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -122 46 9303.5 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -121 45 9304 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -120 44 9304.5 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -119 43 9305 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -118 42 9305.5 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -117 41 9306 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -116 40 9306.5 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -124 48 9298.5 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -124 48 9298.5 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9313.5 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9313.5 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9316.4688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9334.6406 731.7656 moveto -P$1v -9343.25 729.4688 moveto -P$1s -9342.1719 729.1406 moveto -P$1t -9351.0938 729.0469 moveto -P$1z -9359.25 729.4688 moveto -P$1s -9358.1719 729.1406 moveto -P$1t -9365.4375 727.4531 moveto -P$1j -9366.625 726.4531 moveto -P$18 -9366.625 723.8906 moveto -P$19 -9374.3594 726.7031 moveto -P$1a -9377.8594 725.2344 moveto -P$22 -9376.6719 724.2656 moveto -P$23 -9390.25 729.4688 moveto -P$1s -9389.1719 729.1406 moveto -P$1t -9396.4375 727.4531 moveto -P$1j -9401.8125 726.6406 moveto -P$17 -9407.1719 727.2031 moveto -P$1w -9407.1719 726.2969 moveto -P$1x -9418.0938 729.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9299.5 744 moveto -122 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9299.5 752 moveto -122 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -167 48 9844.75 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -166 47 9845.25 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -165 46 9845.75 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -164 45 9846.25 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -163 44 9846.75 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -162 43 9847.25 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -161 42 9847.75 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -160 41 9848.25 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -159 40 9848.75 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -167 48 9840.75 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -167 48 9840.75 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9855.75 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9855.75 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9858.7188 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9876.8906 1011.7656 moveto -P$1v -9885.5 1009.4688 moveto -P$1s -9884.4219 1009.1406 moveto -P$1t -9893.3438 1009.0469 moveto -P$1z -9901.5 1009.4688 moveto -P$1s -9900.4219 1009.1406 moveto -P$1t -9907.6875 1007.4531 moveto -P$1j -9908.875 1006.4531 moveto -P$18 -9908.875 1003.8906 moveto -P$19 -9916.6094 1006.7031 moveto -P$1a -9920.1094 1005.2344 moveto -P$22 -9918.9219 1004.2656 moveto -P$23 -9932.5 1009.4688 moveto -P$1s -9931.4219 1009.1406 moveto -P$1t -9938.6875 1007.4531 moveto -P$1j -9944.0625 1006.6406 moveto -P$17 -9949.4219 1007.2031 moveto -P$1w -9949.4219 1006.2969 moveto -P$1x -9960.3438 1009.0469 moveto -P$1z -9964.1094 1008.8438 moveto -P$12 -9964.1094 1005.2344 moveto -P$13 -9962.9219 1004.2656 moveto -P$14 -9970.7656 1010.4219 moveto -P$1d -9973.4844 1006.2969 moveto -P$1e -9984.3438 1009.0469 moveto -P$1z -9991.2031 1007.4531 moveto -P$1f -9987.5313 1009.7344 moveto -P$1g -9994.875 1003.8906 moveto -P$1k -10003.5 1009.4688 moveto -P$1s -10002.4219 1009.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9841.75 1024 moveto -165 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9841.75 1032 moveto -165 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -163 48 8783.75 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -162 47 8784.25 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -161 46 8784.75 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -160 45 8785.25 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -159 44 8785.75 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -158 43 8786.25 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -157 42 8786.75 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -156 41 8787.25 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -155 40 8787.75 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -163 48 8779.75 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -163 48 8779.75 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8794.75 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8794.75 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8797.7188 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8811.1094 725.2344 moveto -P$22 -8809.9219 724.2656 moveto -P$23 -8817.7656 730.4219 moveto -P$1d -8820.4844 726.2969 moveto -P$1e -8830.5938 729.7344 moveto -P$1p -8826.9219 727.4531 moveto -P$1q -8833.875 723.8906 moveto -P$1k -8836.875 726.4531 moveto -P$18 -8836.875 723.8906 moveto -P$19 -8844.6094 726.7031 moveto -P$1a -8848.1094 725.2344 moveto -P$22 -8846.9219 724.2656 moveto -P$23 -8860.5 729.4688 moveto -P$1s -8859.4219 729.1406 moveto -P$1t -8866.6875 727.4531 moveto -P$1j -8872.0625 726.6406 moveto -P$17 -8877.4219 727.2031 moveto -P$1w -8877.4219 726.2969 moveto -P$1x -8888.3438 729.0469 moveto -P$1z -8893.8594 729.7188 moveto -P$15 -8896.0156 729.2656 moveto -P$16 -8898.875 723.8906 moveto -P$1k -8903.1094 725.2344 moveto -P$22 -8901.9219 724.2656 moveto -P$23 -8913.6875 727.4531 moveto -P$1j -8917.4219 727.2031 moveto -P$1w -8917.4219 726.2969 moveto -P$1x -8926.2031 723.8906 moveto -P$2l -8926.875 726.4531 moveto -P$18 -8926.875 723.8906 moveto -P$19 -8929.875 723.8906 moveto -P$1k -8938.5 729.4688 moveto -P$1s -8937.4219 729.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8780.75 744 moveto -161 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8780.75 752 moveto -161 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -206 48 8849 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -205 47 8849.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -204 46 8850 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -203 45 8850.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -202 44 8851 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -201 43 8851.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -200 42 8852 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -199 41 8852.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -198 40 8853 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -206 48 8845 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -206 48 8845 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8860 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8860 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8862.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8876.3594 865.2344 moveto -P$22 -8875.1719 864.2656 moveto -P$23 -8883.0156 870.4219 moveto -P$1d -8885.7344 866.2969 moveto -P$1e -8895.8438 869.7344 moveto -P$1p -8892.1719 867.4531 moveto -P$1q -8899.125 863.8906 moveto -P$1k -8902.125 866.4531 moveto -P$18 -8902.125 863.8906 moveto -P$19 -8909.8594 866.7031 moveto -P$1a -8913.3594 865.2344 moveto -P$22 -8912.1719 864.2656 moveto -P$23 -8925.75 869.4688 moveto -P$1s -8924.6719 869.1406 moveto -P$1t -8931.9375 867.4531 moveto -P$1j -8937.3125 866.6406 moveto -P$17 -8942.6719 867.2031 moveto -P$1w -8942.6719 866.2969 moveto -P$1x -8953.5938 869.0469 moveto -P$1z -8959.1094 869.7188 moveto -P$15 -8961.2656 869.2656 moveto -P$16 -8964.125 863.8906 moveto -P$1k -8968.3594 865.2344 moveto -P$22 -8967.1719 864.2656 moveto -P$23 -8978.9375 867.4531 moveto -P$1j -8982.6719 867.2031 moveto -P$1w -8982.6719 866.2969 moveto -P$1x -8991.4531 863.8906 moveto -P$2l -8992.125 866.4531 moveto -P$18 -8992.125 863.8906 moveto -P$19 -8995.125 863.8906 moveto -P$1k -9003.75 869.4688 moveto -P$1s -9002.6719 869.1406 moveto -P$1t -9007.3594 868.8438 moveto -P$12 -9007.3594 865.2344 moveto -P$13 -9006.1719 864.2656 moveto -P$14 -9014.0156 870.4219 moveto -P$1d -9016.7344 866.2969 moveto -P$1e -9027.5938 869.0469 moveto -P$1z -9034.4531 867.4531 moveto -P$1f -9030.7813 869.7344 moveto -P$1g -9038.125 863.8906 moveto -P$1k -9046.75 869.4688 moveto -P$1s -9045.6719 869.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8846 884 moveto -204 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8846 892 moveto -204 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -213 48 9090.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -212 47 9091.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -211 46 9091.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -210 45 9092.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -209 44 9092.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -208 43 9093.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -207 42 9093.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -206 41 9094.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -205 40 9094.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -213 48 9086.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -213 48 9086.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9101.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9101.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9104.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9118.1094 865.2344 moveto -P$22 -9116.9219 864.2656 moveto -P$23 -9124.7656 870.4219 moveto -P$1d -9127.4844 866.2969 moveto -P$1e -9137.5938 869.7344 moveto -P$1p -9133.9219 867.4531 moveto -P$1q -9140.875 863.8906 moveto -P$1k -9143.875 866.4531 moveto -P$18 -9143.875 863.8906 moveto -P$19 -9151.6094 866.7031 moveto -P$1a -9155.1094 865.2344 moveto -P$22 -9153.9219 864.2656 moveto -P$23 -9167.5 869.4688 moveto -P$1s -9166.4219 869.1406 moveto -P$1t -9173.6875 867.4531 moveto -P$1j -9179.0625 866.6406 moveto -P$17 -9184.4219 867.2031 moveto -P$1w -9184.4219 866.2969 moveto -P$1x -9195.3438 869.0469 moveto -P$1z -9200.8594 869.7188 moveto -P$15 -9203.0156 869.2656 moveto -P$16 -9205.875 863.8906 moveto -P$1k -9210.1094 865.2344 moveto -P$22 -9208.9219 864.2656 moveto -P$23 -9220.6875 867.4531 moveto -P$1j -9224.4219 867.2031 moveto -P$1w -9224.4219 866.2969 moveto -P$1x -9233.2031 863.8906 moveto -P$2l -9233.875 866.4531 moveto -P$18 -9233.875 863.8906 moveto -P$19 -9236.875 863.8906 moveto -P$1k -9245.5 869.4688 moveto -P$1s -9244.4219 869.1406 moveto -P$1t -9247.9219 864.2656 moveto -P$25 -9259.8594 869.7188 moveto -P$15 -9262.0156 869.2656 moveto -P$16 -9264.1094 866.4531 moveto -P$2b -9270.9219 864.2656 moveto -P$2e -9274.9531 864.5938 moveto -P$1h -9284.5 869.4688 moveto -P$1s -9283.4219 869.1406 moveto -P$1t -9291.9844 867.7188 moveto -P$21 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9087.75 884 moveto -211 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9087.75 892 moveto -211 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -201 48 10374.8 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -200 47 10375.3 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -199 46 10375.8 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -198 45 10376.3 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -197 44 10376.8 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -196 43 10377.3 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -195 42 10377.8 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -194 41 10378.3 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -193 40 10378.8 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -201 48 10370.8 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -201 48 10370.8 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10385.8 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10385.8 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10388.7688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10402.1594 1005.2344 moveto -P$2m -10400.9719 1004.2656 moveto -P$2n -10415.55 1009.4688 moveto -P$1s -10414.4719 1009.1406 moveto -P$1t -10422.6594 1006.7031 moveto -P$1a -10424.925 1006.4531 moveto -P$18 -10424.925 1003.8906 moveto -P$19 -10432.1125 1006.6406 moveto -P$17 -10434.925 1006.4531 moveto -P$18 -10434.925 1003.8906 moveto -P$19 -10440.4719 1007.2031 moveto -P$1w -10440.4719 1006.2969 moveto -P$1x -10451.3938 1009.0469 moveto -P$1z -10452.7688 1004.2656 moveto -P$1i -10464.7375 1007.4531 moveto -P$1j -10471.55 1009.4688 moveto -P$1s -10470.4719 1009.1406 moveto -P$1t -10479.55 1009.4688 moveto -P$1s -10478.4719 1009.1406 moveto -P$1t -10487.2219 1004.5469 moveto -P$1m -10495.55 1009.4688 moveto -P$1s -10494.4719 1009.1406 moveto -P$1t -10502.6594 1006.7031 moveto -P$1a -10506.0031 1004.5938 moveto -P$1h -10509.925 1006.4531 moveto -P$18 -10509.925 1003.8906 moveto -P$19 -10515.4719 1007.2031 moveto -P$1w -10515.4719 1006.2969 moveto -P$1x -10526.3938 1009.0469 moveto -P$1z -10532.5344 1005.0625 moveto -P$1n -10532.5344 1004.1094 moveto -P$1o -10538.9719 1012.0313 moveto -P$1y -10542.6438 1009.7344 moveto -P$1p -10547.0031 1004.5938 moveto -P$1h -10550.925 1006.4531 moveto -P$18 -10550.925 1003.8906 moveto -P$19 -10556.4719 1007.2031 moveto -P$1w -10556.4719 1006.2969 moveto -P$1x -10567.3938 1009.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10371.8 1024 moveto -199 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10371.8 1032 moveto -199 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -195 48 10537.8 716 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -194 47 10538.3 716.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -193 46 10538.8 717 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -192 45 10539.3 717.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -191 44 10539.8 718 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -190 43 10540.3 718.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -189 42 10540.8 719 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -188 41 10541.3 719.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -187 40 10541.8 720 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -195 48 10533.8 712 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -195 48 10533.8 712 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10548.8 728 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10548.8 728 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10551.7688 733.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10565.1594 725.2344 moveto -P$2m -10563.9719 724.2656 moveto -P$2n -10578.55 729.4688 moveto -P$1s -10577.4719 729.1406 moveto -P$1t -10585.6594 726.7031 moveto -P$1a -10587.925 726.4531 moveto -P$18 -10587.925 723.8906 moveto -P$19 -10595.1125 726.6406 moveto -P$17 -10597.925 726.4531 moveto -P$18 -10597.925 723.8906 moveto -P$19 -10603.4719 727.2031 moveto -P$1w -10603.4719 726.2969 moveto -P$1x -10614.3938 729.0469 moveto -P$1z -10615.7688 724.2656 moveto -P$1i -10627.7375 727.4531 moveto -P$1j -10634.55 729.4688 moveto -P$1s -10633.4719 729.1406 moveto -P$1t -10642.55 729.4688 moveto -P$1s -10641.4719 729.1406 moveto -P$1t -10648.5344 725.0625 moveto -P$1n -10648.5344 724.1094 moveto -P$1o -10654.9719 732.0313 moveto -P$1y -10658.6438 729.7344 moveto -P$1p -10663.0031 724.5938 moveto -P$1h -10666.925 726.4531 moveto -P$18 -10666.925 723.8906 moveto -P$19 -10672.4719 727.2031 moveto -P$1w -10672.4719 726.2969 moveto -P$1x -10683.3938 729.0469 moveto -P$1z -10684.7688 724.2656 moveto -P$1i -10695.9094 729.7188 moveto -P$15 -10698.0656 729.2656 moveto -P$16 -10704.7375 727.4531 moveto -P$1j -10710.2531 729.6563 moveto -P$2c -10711.3313 732.2031 moveto -P$2d -10719.55 729.4688 moveto -P$1s -10718.4719 729.1406 moveto -P$1t -10723.0031 724.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10534.8 744 moveto -193 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10534.8 752 moveto -193 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -83 48 9662.75 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -82 47 9663.25 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -81 46 9663.75 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -80 45 9664.25 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -79 44 9664.75 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -78 43 9665.25 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -77 42 9665.75 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -76 41 9666.25 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -75 40 9666.75 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -83 48 9658.75 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -83 48 9658.75 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9673.75 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9673.75 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9676.7188 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9691.8594 865.4375 moveto -P$1b -9691.1875 864.2656 moveto -P$1c -9701.2031 867.4531 moveto -P$1f -9697.5313 869.7344 moveto -P$1g -9709.2031 867.4531 moveto -P$1f -9705.5313 869.7344 moveto -P$1g -9716.6875 867.4531 moveto -P$1j -9723.5 869.4688 moveto -P$1s -9722.4219 869.1406 moveto -P$1t -9730.0625 866.6406 moveto -P$17 -9737.0625 866.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9659.75 884 moveto -81 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9659.75 892 moveto -81 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -186 48 10382.5 1104 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -185 47 10383 1104.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -184 46 10383.5 1105 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -183 45 10384 1105.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -182 44 10384.5 1106 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -181 43 10385 1106.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -180 42 10385.5 1107 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -179 41 10386 1107.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -178 40 10386.5 1108 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -186 48 10378.5 1100 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -186 48 10378.5 1100 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10393.5 1116 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10393.5 1116 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10396.4688 1121.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10409.8594 1113.2344 moveto -P$2m -10408.6719 1112.2656 moveto -P$2n -10423.25 1117.4688 moveto -P$1s -10422.1719 1117.1406 moveto -P$1t -10430.3594 1114.7031 moveto -P$1a -10432.625 1114.4531 moveto -P$18 -10432.625 1111.8906 moveto -P$19 -10439.8125 1114.6406 moveto -P$17 -10442.625 1114.4531 moveto -P$18 -10442.625 1111.8906 moveto -P$19 -10448.1719 1115.2031 moveto -P$1w -10448.1719 1114.2969 moveto -P$1x -10459.0938 1117.0469 moveto -P$1z -10460.4688 1112.2656 moveto -P$1i -10472.4375 1115.4531 moveto -P$1j -10479.25 1117.4688 moveto -P$1s -10478.1719 1117.1406 moveto -P$1t -10487.25 1117.4688 moveto -P$1s -10486.1719 1117.1406 moveto -P$1t -10490.6719 1120.0313 moveto -P$1y -10494.3438 1117.7344 moveto -P$1p -10498.7031 1112.5938 moveto -P$1h -10502.625 1114.4531 moveto -P$18 -10502.625 1111.8906 moveto -P$19 -10508.1719 1115.2031 moveto -P$1w -10508.1719 1114.2969 moveto -P$1x -10519.0938 1117.0469 moveto -P$1z -10520.4688 1112.2656 moveto -P$1i -10531.6094 1117.7188 moveto -P$15 -10533.7656 1117.2656 moveto -P$16 -10540.4375 1115.4531 moveto -P$1j -10545.9531 1117.6563 moveto -P$2c -10547.0313 1120.2031 moveto -P$2d -10555.25 1117.4688 moveto -P$1s -10554.1719 1117.1406 moveto -P$1t -10558.7031 1112.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10379.5 1132 moveto -184 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10379.5 1140 moveto -184 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -109 48 10715.8 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -108 47 10716.3 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -107 46 10716.8 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -106 45 10717.3 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -105 44 10717.8 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -104 43 10718.3 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -103 42 10718.8 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -102 41 10719.3 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -101 40 10719.8 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -109 48 10711.8 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -109 48 10711.8 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10726.8 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10726.8 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10729.7688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10748.5344 864.9375 moveto -P$1l -10752.4719 867.2031 moveto -P$1w -10752.4719 866.2969 moveto -P$1x -10763.3938 869.0469 moveto -P$1z -10767.0031 864.5938 moveto -P$1h -10776.55 869.4688 moveto -P$1s -10775.4719 869.1406 moveto -P$1t -10784.3938 869.0469 moveto -P$1z -10788.0031 864.5938 moveto -P$1h -10791.9719 864.2656 moveto -P$2e -10796.0031 864.5938 moveto -P$1h -10805.55 869.4688 moveto -P$1s -10804.4719 869.1406 moveto -P$1t -10813.0344 867.7188 moveto -P$21 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10712.8 884 moveto -107 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10712.8 892 moveto -107 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -180 48 493 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -179 47 493.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -178 46 494 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -177 45 494.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -176 44 495 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -175 43 495.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -174 42 496 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -173 41 496.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -172 40 497 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -180 48 489 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -180 48 489 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -504 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -504 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -506.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -525.7344 352.9375 moveto -P$1l -529.6719 355.2031 moveto -P$1w -529.6719 354.2969 moveto -P$1x -540.5938 357.0469 moveto -P$1z -544.2031 352.5938 moveto -P$1h -553.75 357.4688 moveto -P$1s -552.6719 357.1406 moveto -P$1t -561.5938 357.0469 moveto -P$1z -565.2031 352.5938 moveto -P$1h -570.3594 353.2344 moveto -P$2m -569.1719 352.2656 moveto -P$2n -578.125 354.4531 moveto -P$18 -578.125 351.8906 moveto -P$19 -584.9375 355.4531 moveto -P$1j -591.75 357.4688 moveto -P$1s -590.6719 357.1406 moveto -P$1t -598.8594 354.7031 moveto -P$1a -602.2031 352.5938 moveto -P$1h -608.6719 355.2031 moveto -P$1w -608.6719 354.2969 moveto -P$1x -617.9375 355.4531 moveto -P$1j -621.8594 361.625 moveto -P$24 -626.3594 353.2344 moveto -P$22 -625.1719 352.2656 moveto -P$23 -635.6719 355.2031 moveto -P$1w -635.6719 354.2969 moveto -P$1x -644.9375 355.4531 moveto -P$1j -647.2031 352.5938 moveto -P$1h -651.125 351.8906 moveto -P$1k -659.75 357.4688 moveto -P$1s -658.6719 357.1406 moveto -P$1t -663.2031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -490 372 moveto -178 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -490 380 moveto -178 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -151 48 306.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -150 47 307.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -149 46 307.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -148 45 308.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -147 44 308.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -146 43 309.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -145 42 309.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -144 41 310.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -143 40 310.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -151 48 302.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -151 48 302.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -317.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -317.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -320.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -339.4844 352.9375 moveto -P$1l -343.4219 355.2031 moveto -P$1w -343.4219 354.2969 moveto -P$1x -354.3438 357.0469 moveto -P$1z -357.9531 352.5938 moveto -P$1h -367.5 357.4688 moveto -P$1s -366.4219 357.1406 moveto -P$1t -375.3438 357.0469 moveto -P$1z -378.9531 352.5938 moveto -P$1h -382.9219 352.2656 moveto -P$2e -386.9531 352.5938 moveto -P$1h -396.5 357.4688 moveto -P$1s -395.4219 357.1406 moveto -P$1t -403.9844 355.7188 moveto -P$21 -411.1094 353.2344 moveto -P$22 -409.9219 352.2656 moveto -P$23 -420.4219 355.2031 moveto -P$1w -420.4219 354.2969 moveto -P$1x -429.6875 355.4531 moveto -P$1j -431.9531 352.5938 moveto -P$1h -435.875 351.8906 moveto -P$1k -444.5 357.4688 moveto -P$1s -443.4219 357.1406 moveto -P$1t -447.9531 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -303.75 372 moveto -149 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -303.75 380 moveto -149 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -178 48 847.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -177 47 848 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -176 46 848.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -175 45 849 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -174 44 849.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -173 43 850 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -172 42 850.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -171 41 851 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -170 40 851.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -178 48 843.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -178 48 843.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -858.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -858.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -861.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -880.2344 352.9375 moveto -P$1l -884.1719 355.2031 moveto -P$1w -884.1719 354.2969 moveto -P$1x -895.0938 357.0469 moveto -P$1z -898.7031 352.5938 moveto -P$1h -908.25 357.4688 moveto -P$1s -907.1719 357.1406 moveto -P$1t -916.0938 357.0469 moveto -P$1z -919.7031 352.5938 moveto -P$1h -928.9219 352.5469 moveto -P$1m -937.25 357.4688 moveto -P$1s -936.1719 357.1406 moveto -P$1t -944.3594 354.7031 moveto -P$1a -947.7031 352.5938 moveto -P$1h -951.625 354.4531 moveto -P$18 -951.625 351.8906 moveto -P$19 -957.1719 355.2031 moveto -P$1w -957.1719 354.2969 moveto -P$1x -968.0938 357.0469 moveto -P$1z -974.8125 354.6406 moveto -P$17 -978.8594 353.2344 moveto -P$22 -977.6719 352.2656 moveto -P$23 -988.1719 355.2031 moveto -P$1w -988.1719 354.2969 moveto -P$1x -997.4375 355.4531 moveto -P$1j -999.7031 352.5938 moveto -P$1h -1003.625 351.8906 moveto -P$1k -1012.25 357.4688 moveto -P$1s -1011.1719 357.1406 moveto -P$1t -1015.7031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -844.5 372 moveto -176 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -844.5 380 moveto -176 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -103 48 708.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -102 47 709.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -101 46 709.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -100 45 710.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -99 44 710.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -98 43 711.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -97 42 711.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -96 41 712.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -95 40 712.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -103 48 704.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -103 48 704.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -719.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -719.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -722.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -733.7188 352.2656 moveto -P$1i -744.8594 357.7188 moveto -P$15 -747.0156 357.2656 moveto -P$16 -754.0625 354.6406 moveto -P$17 -756.8438 351.8906 moveto -P$2k -765.1094 353.2344 moveto -P$22 -763.9219 352.2656 moveto -P$23 -774.4219 355.2031 moveto -P$1w -774.4219 354.2969 moveto -P$1x -783.6875 355.4531 moveto -P$1j -785.9531 352.5938 moveto -P$1h -789.875 351.8906 moveto -P$1k -798.5 357.4688 moveto -P$1s -797.4219 357.1406 moveto -P$1t -801.9531 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -705.75 372 moveto -101 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -705.75 380 moveto -101 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -74 48 176 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -73 47 176.5 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -72 46 177 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -71 45 177.5 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -70 44 178 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -69 43 178.5 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -68 42 179 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -67 41 179.5 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -66 40 180 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -74 48 172 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -74 48 172 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -187 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -187 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -189.9688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -203.3594 229.2344 moveto -P$22 -202.1719 228.2656 moveto -P$23 -212.6719 231.2031 moveto -P$1w -212.6719 230.2969 moveto -P$1x -221.9375 231.4531 moveto -P$1j -224.2031 228.5938 moveto -P$1h -228.125 227.8906 moveto -P$1k -236.75 233.4688 moveto -P$1s -235.6719 233.1406 moveto -P$1t -240.2031 228.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -173 248 moveto -72 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -173 256 moveto -72 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -111 48 139.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -110 47 140.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -109 46 140.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -108 45 141.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -107 44 141.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -106 43 142.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -105 42 142.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -104 41 143.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -103 40 143.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -111 48 135.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -111 48 135.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -150.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -150.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -153.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -168.8594 353.4375 moveto -P$1b -168.1875 352.2656 moveto -P$1c -178.2031 357.6563 moveto -P$2c -179.2813 360.2031 moveto -P$2d -187.5 357.4688 moveto -P$1s -186.4219 357.1406 moveto -P$1t -195.3438 357.0469 moveto -P$1z -198.9531 352.5938 moveto -P$1h -204.1094 353.2344 moveto -P$22 -202.9219 352.2656 moveto -P$23 -213.4219 355.2031 moveto -P$1w -213.4219 354.2969 moveto -P$1x -222.6875 355.4531 moveto -P$1j -224.9531 352.5938 moveto -P$1h -228.875 351.8906 moveto -P$1k -237.5 357.4688 moveto -P$1s -236.4219 357.1406 moveto -P$1t -240.9531 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -136.75 372 moveto -109 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -136.75 380 moveto -109 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -69 48 42.75 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -68 47 43.25 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -67 46 43.75 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -66 45 44.25 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -65 44 44.75 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -64 43 45.25 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -63 42 45.75 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -62 41 46.25 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -61 40 46.75 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -69 48 38.75 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -69 48 38.75 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -53.75 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -53.75 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -56.7188 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -70.1094 105.2344 moveto -P$22 -68.9219 104.2656 moveto -P$23 -79.4219 107.2031 moveto -P$1w -79.4219 106.2969 moveto -P$1x -88.6875 107.4531 moveto -P$1j -90.9531 104.5938 moveto -P$1h -97.8594 109.7188 moveto -P$15 -100.0156 109.2656 moveto -P$16 -102.875 103.8906 moveto -P$1k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -39.75 124 moveto -67 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -39.75 132 moveto -67 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -103 48 146.75 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -102 47 147.25 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -101 46 147.75 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -100 45 148.25 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -99 44 148.75 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -98 43 149.25 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -97 42 149.75 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -96 41 150.25 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -95 40 150.75 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -103 48 142.75 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -103 48 142.75 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -157.75 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -157.75 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -160.7188 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -174.1094 105.2344 moveto -P$22 -172.9219 104.2656 moveto -P$23 -183.4219 107.2031 moveto -P$1w -183.4219 106.2969 moveto -P$1x -192.6875 107.4531 moveto -P$1j -194.9531 104.5938 moveto -P$1h -198.875 103.8906 moveto -P$1k -207.5 109.4688 moveto -P$1s -206.4219 109.1406 moveto -P$1t -210.9531 104.5938 moveto -P$1h -213.7188 104.2656 moveto -P$1i -224.6094 113.625 moveto -P$24 -228.9219 112.0313 moveto -P$1y -232.5938 109.7344 moveto -P$1p -241.5 109.4688 moveto -P$1s -240.4219 109.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -143.75 124 moveto -101 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -143.75 132 moveto -101 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -163 48 2084.75 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -162 47 2085.25 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -161 46 2085.75 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -160 45 2086.25 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -159 44 2086.75 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -158 43 2087.25 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -157 42 2087.75 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -156 41 2088.25 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -155 40 2088.75 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -163 48 2080.75 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -163 48 2080.75 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -2095.75 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2095.75 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2098.7188 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -2112.1094 229.2344 moveto -P$22 -2110.9219 228.2656 moveto -P$23 -2118.7656 234.4219 moveto -P$1d -2121.4844 230.2969 moveto -P$1e -2131.5938 233.7344 moveto -P$1p -2127.9219 231.4531 moveto -P$1q -2134.875 227.8906 moveto -P$1k -2137.875 230.4531 moveto -P$18 -2137.875 227.8906 moveto -P$19 -2145.6094 230.7031 moveto -P$1a -2149.1094 229.2344 moveto -P$22 -2147.9219 228.2656 moveto -P$23 -2161.5 233.4688 moveto -P$1s -2160.4219 233.1406 moveto -P$1t -2167.6875 231.4531 moveto -P$1j -2173.0625 230.6406 moveto -P$17 -2178.4219 231.2031 moveto -P$1w -2178.4219 230.2969 moveto -P$1x -2189.3438 233.0469 moveto -P$1z -2194.8594 233.7188 moveto -P$15 -2197.0156 233.2656 moveto -P$16 -2199.875 227.8906 moveto -P$1k -2204.1094 229.2344 moveto -P$22 -2202.9219 228.2656 moveto -P$23 -2214.6875 231.4531 moveto -P$1j -2218.4219 231.2031 moveto -P$1w -2218.4219 230.2969 moveto -P$1x -2227.2031 227.8906 moveto -P$2l -2227.875 230.4531 moveto -P$18 -2227.875 227.8906 moveto -P$19 -2230.875 227.8906 moveto -P$1k -2239.5 233.4688 moveto -P$1s -2238.4219 233.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2081.75 248 moveto -161 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2081.75 256 moveto -161 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -105 48 1966.75 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -104 47 1967.25 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -103 46 1967.75 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -102 45 1968.25 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -101 44 1968.75 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -100 43 1969.25 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -99 42 1969.75 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -98 41 1970.25 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -97 40 1970.75 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -105 48 1962.75 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -105 48 1962.75 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1977.75 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1977.75 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1980.7188 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1996.4844 105.0625 moveto -P$1n -1998.1406 112.8594 moveto -P$2u -2001.7656 110.4219 moveto -P$1d -2004.4844 106.2969 moveto -P$1e -2015.5 109.4688 moveto -P$1s -2014.4219 109.1406 moveto -P$1t -2017.7656 110.4219 moveto -P$1d -2020.4844 106.2969 moveto -P$1e -2031.5 109.4688 moveto -P$1s -2030.4219 109.1406 moveto -P$1t -2033.9219 104.2656 moveto -P$20 -2047.3438 109.0469 moveto -P$1z -2050.9531 104.5938 moveto -P$1h -2058.6875 107.4531 moveto -P$1j -2062.6094 113.625 moveto -P$24 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1963.75 124 moveto -103 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1963.75 132 moveto -103 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -114 48 1817 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -113 47 1817.5 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -112 46 1818 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -111 45 1818.5 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -110 44 1819 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -109 43 1819.5 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -108 42 1820 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -107 41 1820.5 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -106 40 1821 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -114 48 1813 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -114 48 1813 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1828 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1828 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1830.9688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1844.3594 105.2344 moveto -P$22 -1843.1719 104.2656 moveto -P$23 -1851.0156 110.4219 moveto -P$1d -1853.7344 106.2969 moveto -P$1e -1863.8438 109.7344 moveto -P$1p -1860.1719 107.4531 moveto -P$1q -1867.125 103.8906 moveto -P$1k -1870.125 106.4531 moveto -P$18 -1870.125 103.8906 moveto -P$19 -1877.3125 106.6406 moveto -P$17 -1885.5938 109.0469 moveto -P$29 -1893.75 109.4688 moveto -P$1s -1892.6719 109.1406 moveto -P$1t -1900.4531 107.4531 moveto -P$1f -1896.7813 109.7344 moveto -P$1g -1904.1719 104.2656 moveto -P$2q -1911.125 106.4531 moveto -P$18 -1911.125 103.8906 moveto -P$19 -1914.125 103.8906 moveto -P$1k -1922.75 109.4688 moveto -P$1s -1921.6719 109.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1814 124 moveto -112 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1814 132 moveto -112 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -117 48 1664.75 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -116 47 1665.25 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -115 46 1665.75 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -114 45 1666.25 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -113 44 1666.75 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -112 43 1667.25 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -111 42 1667.75 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -110 41 1668.25 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -109 40 1668.75 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -117 48 1660.75 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -117 48 1660.75 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1675.75 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1675.75 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1678.7188 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1692.1094 105.2344 moveto -P$22 -1690.9219 104.2656 moveto -P$23 -1698.7656 110.4219 moveto -P$1d -1701.4844 106.2969 moveto -P$1e -1711.5938 109.7344 moveto -P$1p -1707.9219 107.4531 moveto -P$1q -1714.875 103.8906 moveto -P$1k -1717.875 106.4531 moveto -P$18 -1717.875 103.8906 moveto -P$19 -1725.0625 106.6406 moveto -P$17 -1733.3438 109.0469 moveto -P$29 -1741.5 109.4688 moveto -P$1s -1740.4219 109.1406 moveto -P$1t -1748.2031 107.4531 moveto -P$1f -1744.5313 109.7344 moveto -P$1g -1751.9219 104.2656 moveto -P$2g -1757.875 106.4531 moveto -P$18 -1757.875 103.8906 moveto -P$19 -1766.3438 109.0469 moveto -P$1z -1768.8438 103.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1661.75 124 moveto -115 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1661.75 132 moveto -115 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -162 48 7630 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -161 47 7630.5 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -160 46 7631 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -159 45 7631.5 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -158 44 7632 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -157 43 7632.5 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -156 42 7633 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -155 41 7633.5 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -154 40 7634 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -162 48 7626 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -162 48 7626 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7641 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7641 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7643.9688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7662.7344 1004.9375 moveto -P$1l -7666.6719 1007.2031 moveto -P$1w -7666.6719 1006.2969 moveto -P$1x -7677.5938 1009.0469 moveto -P$1z -7683.4531 1003.8906 moveto -P$2l -7684.125 1006.4531 moveto -P$18 -7684.125 1003.8906 moveto -P$19 -7690.9375 1007.4531 moveto -P$1j -7697.2344 1007.7188 moveto -P$21 -7703.1719 1004.2656 moveto -P$20 -7716.2344 1007.7188 moveto -P$21 -7725.1094 1009.7188 moveto -P$15 -7727.2656 1009.2656 moveto -P$16 -7730.125 1006.4531 moveto -P$18 -7730.125 1003.8906 moveto -P$19 -7733.125 1003.8906 moveto -P$1k -7736.1719 1004.2656 moveto -P$2g -7742.125 1006.4531 moveto -P$18 -7742.125 1003.8906 moveto -P$19 -7749.3125 1006.6406 moveto -P$17 -7753.2031 1004.5938 moveto -P$1h -7762.75 1009.4688 moveto -P$1s -7761.6719 1009.1406 moveto -P$1t -7770.5938 1009.0469 moveto -P$1z -7778.75 1009.4688 moveto -P$1s -7777.6719 1009.1406 moveto -P$1t -7784.9375 1007.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7627 1024 moveto -160 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7627 1032 moveto -160 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -181 48 7413.75 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -180 47 7414.25 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -179 46 7414.75 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -178 45 7415.25 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -177 44 7415.75 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -176 43 7416.25 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -175 42 7416.75 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -174 41 7417.25 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -173 40 7417.75 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -181 48 7409.75 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -181 48 7409.75 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7424.75 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7424.75 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7427.7188 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7446.4844 1004.9375 moveto -P$1l -7450.4219 1007.2031 moveto -P$1w -7450.4219 1006.2969 moveto -P$1x -7461.3438 1009.0469 moveto -P$1z -7467.2031 1003.8906 moveto -P$2l -7467.875 1006.4531 moveto -P$18 -7467.875 1003.8906 moveto -P$19 -7474.6875 1007.4531 moveto -P$1j -7480.9844 1007.7188 moveto -P$21 -7491.0781 1008.9063 moveto -P$26 -7488.1094 1005.2344 moveto -P$27 -7500.5 1009.4688 moveto -P$1s -7499.4219 1009.1406 moveto -P$1t -7507.2031 1007.4531 moveto -P$1f -7503.5313 1009.7344 moveto -P$1g -7510.875 1006.4531 moveto -P$18 -7510.875 1003.8906 moveto -P$19 -7517.6875 1007.4531 moveto -P$1j -7524.5 1009.4688 moveto -P$1s -7523.4219 1009.1406 moveto -P$1t -7531.6094 1006.7031 moveto -P$1a -7534.9531 1004.5938 moveto -P$1h -7538.9219 1004.2656 moveto -P$2g -7544.875 1006.4531 moveto -P$18 -7544.875 1003.8906 moveto -P$19 -7552.0625 1006.6406 moveto -P$17 -7555.9531 1004.5938 moveto -P$1h -7565.5 1009.4688 moveto -P$1s -7564.4219 1009.1406 moveto -P$1t -7573.3438 1009.0469 moveto -P$1z -7581.5 1009.4688 moveto -P$1s -7580.4219 1009.1406 moveto -P$1t -7587.6875 1007.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7410.75 1024 moveto -179 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7410.75 1032 moveto -179 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -198 48 8400 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -197 47 8400.5 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -196 46 8401 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -195 45 8401.5 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -194 44 8402 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -193 43 8402.5 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -192 42 8403 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -191 41 8403.5 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -190 40 8404 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -198 48 8396 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -198 48 8396 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8411 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8411 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8413.9688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8430.3281 1008.9063 moveto -P$26 -8427.3594 1005.2344 moveto -P$27 -8439.75 1009.4688 moveto -P$1s -8438.6719 1009.1406 moveto -P$1t -8447.2344 1007.7188 moveto -P$21 -8455.6719 1007.2031 moveto -P$1w -8455.6719 1006.2969 moveto -P$1x -8462.2031 1004.5938 moveto -P$1h -8471.75 1009.4688 moveto -P$1s -8470.6719 1009.1406 moveto -P$1t -8479.4219 1004.5469 moveto -P$1m -8487.75 1009.4688 moveto -P$1s -8486.6719 1009.1406 moveto -P$1t -8493.9375 1007.4531 moveto -P$1j -8494.3594 1006.4531 moveto -P$2b -8506.75 1009.4688 moveto -P$1s -8505.6719 1009.1406 moveto -P$1t -8512.9375 1007.4531 moveto -P$1j -8515.3594 1005.2344 moveto -P$22 -8514.1719 1004.2656 moveto -P$23 -8524.6719 1007.2031 moveto -P$1w -8524.6719 1006.2969 moveto -P$1x -8534.3125 1006.6406 moveto -P$17 -8538.2031 1004.5938 moveto -P$1h -8542.1719 1004.2656 moveto -P$2g -8548.125 1006.4531 moveto -P$18 -8548.125 1003.8906 moveto -P$19 -8555.3125 1006.6406 moveto -P$17 -8559.2031 1004.5938 moveto -P$1h -8568.75 1009.4688 moveto -P$1s -8567.6719 1009.1406 moveto -P$1t -8576.5938 1009.0469 moveto -P$1z -8584.75 1009.4688 moveto -P$1s -8583.6719 1009.1406 moveto -P$1t -8590.9375 1007.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8397 1024 moveto -196 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8397 1032 moveto -196 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -156 48 8209 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -155 47 8209.5 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -154 46 8210 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -153 45 8210.5 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -152 44 8211 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -151 43 8211.5 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -150 42 8212 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -149 41 8212.5 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -148 40 8213 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -156 48 8205 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -156 48 8205 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8220 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8220 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8222.9688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8240.4219 1004.5469 moveto -P$1m -8243.125 1006.4531 moveto -P$18 -8243.125 1003.8906 moveto -P$19 -8251.2344 1007.7188 moveto -P$21 -8258.1719 1012.0313 moveto -P$1y -8261.8438 1009.7344 moveto -P$1p -8265.125 1003.8906 moveto -P$1k -8273.75 1009.4688 moveto -P$1s -8272.6719 1009.1406 moveto -P$1t -8276.1719 1004.2656 moveto -P$20 -8289.2344 1007.7188 moveto -P$21 -8298.1094 1009.7188 moveto -P$15 -8300.2656 1009.2656 moveto -P$16 -8303.125 1006.4531 moveto -P$18 -8303.125 1003.8906 moveto -P$19 -8306.125 1003.8906 moveto -P$1k -8309.1719 1004.2656 moveto -P$2g -8315.125 1006.4531 moveto -P$18 -8315.125 1003.8906 moveto -P$19 -8322.3125 1006.6406 moveto -P$17 -8326.2031 1004.5938 moveto -P$1h -8335.75 1009.4688 moveto -P$1s -8334.6719 1009.1406 moveto -P$1t -8343.5938 1009.0469 moveto -P$1z -8351.75 1009.4688 moveto -P$1s -8350.6719 1009.1406 moveto -P$1t -8357.9375 1007.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8206 1024 moveto -154 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8206 1032 moveto -154 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -173 48 8000.75 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -172 47 8001.25 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -171 46 8001.75 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -170 45 8002.25 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -169 44 8002.75 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -168 43 8003.25 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -167 42 8003.75 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -166 41 8004.25 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -165 40 8004.75 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -173 48 7996.75 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -173 48 7996.75 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8011.75 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8011.75 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8014.7188 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8025.7188 1004.2656 moveto -P$1i -8039.5 1009.4688 moveto -P$1s -8038.4219 1009.1406 moveto -P$1t -8046.9844 1007.7188 moveto -P$21 -8053.9219 1012.0313 moveto -P$1y -8057.5938 1009.7344 moveto -P$1p -8060.875 1003.8906 moveto -P$1k -8066.8594 1009.7188 moveto -P$15 -8069.0156 1009.2656 moveto -P$16 -8072.9531 1004.5938 moveto -P$1h -8082.5 1009.4688 moveto -P$1s -8081.4219 1009.1406 moveto -P$1t -8084.9219 1004.2656 moveto -P$20 -8097.9844 1007.7188 moveto -P$21 -8106.8594 1009.7188 moveto -P$15 -8109.0156 1009.2656 moveto -P$16 -8111.875 1006.4531 moveto -P$18 -8111.875 1003.8906 moveto -P$19 -8114.875 1003.8906 moveto -P$1k -8117.9219 1004.2656 moveto -P$2g -8123.875 1006.4531 moveto -P$18 -8123.875 1003.8906 moveto -P$19 -8131.0625 1006.6406 moveto -P$17 -8134.9531 1004.5938 moveto -P$1h -8144.5 1009.4688 moveto -P$1s -8143.4219 1009.1406 moveto -P$1t -8152.3438 1009.0469 moveto -P$1z -8160.5 1009.4688 moveto -P$1s -8159.4219 1009.1406 moveto -P$1t -8166.6875 1007.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7997.75 1024 moveto -171 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7997.75 1032 moveto -171 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -138 48 7827 996 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -137 47 7827.5 996.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -136 46 7828 997 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -135 45 7828.5 997.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -134 44 7829 998 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -133 43 7829.5 998.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -132 42 7830 999 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -131 41 7830.5 999.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -130 40 7831 1000 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -138 48 7823 992 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -138 48 7823 992 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7838 1008 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7838 1008 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7840.9688 1013.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7852.75 1004.2656 moveto -P$2v -7860.1719 1004.2656 moveto -P$2j -7870.1719 1004.2656 moveto -P$2g -7876.1719 1004.2656 moveto -P$20 -7889.2344 1007.7188 moveto -P$21 -7898.1094 1009.7188 moveto -P$15 -7900.2656 1009.2656 moveto -P$16 -7903.125 1006.4531 moveto -P$18 -7903.125 1003.8906 moveto -P$19 -7906.125 1003.8906 moveto -P$1k -7909.1719 1004.2656 moveto -P$2g -7915.125 1006.4531 moveto -P$18 -7915.125 1003.8906 moveto -P$19 -7922.3125 1006.6406 moveto -P$17 -7926.2031 1004.5938 moveto -P$1h -7935.75 1009.4688 moveto -P$1s -7934.6719 1009.1406 moveto -P$1t -7943.5938 1009.0469 moveto -P$1z -7951.75 1009.4688 moveto -P$1s -7950.6719 1009.1406 moveto -P$1t -7957.9375 1007.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7824 1024 moveto -136 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7824 1032 moveto -136 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -81 48 12003.8 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -80 47 12004.3 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -79 46 12004.8 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -78 45 12005.3 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -77 44 12005.8 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -76 43 12006.3 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -75 42 12006.8 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -74 41 12007.3 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -73 40 12007.8 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -81 48 11999.8 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -81 48 11999.8 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -12014.8 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12014.8 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12017.7688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12036.5344 864.9375 moveto -P$1l -12043.3938 869.0469 moveto -P$29 -12048.9094 869.7188 moveto -P$15 -12051.0656 869.2656 moveto -P$16 -12057.7375 867.4531 moveto -P$1j -12063.1125 866.6406 moveto -P$17 -12071.55 869.4688 moveto -P$1s -12070.4719 869.1406 moveto -P$1t -12075.0031 864.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12000.8 884 moveto -79 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12000.8 892 moveto -79 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -136 48 11832 856 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -135 47 11832.5 856.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -134 46 11833 857 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -133 45 11833.5 857.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -132 44 11834 858 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -131 43 11834.5 858.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -130 42 11835 859 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -129 41 11835.5 859.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -128 40 11836 860 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -136 48 11828 852 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -136 48 11828 852 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -11843 868 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11843 868 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11845.9688 873.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -11858.1719 864.2656 moveto -P$2j -11873.75 869.4688 moveto -P$1s -11872.6719 869.1406 moveto -P$1t -11880.3125 866.6406 moveto -P$17 -11887.3125 866.6406 moveto -P$17 -11893.1094 869.7188 moveto -P$15 -11895.2656 869.2656 moveto -P$16 -11902.4531 869.6563 moveto -P$2c -11903.5313 872.2031 moveto -P$2d -11911.75 869.4688 moveto -P$1s -11910.6719 869.1406 moveto -P$1t -11920.7344 864.9375 moveto -P$1l -11925.1094 869.7188 moveto -P$15 -11927.2656 869.2656 moveto -P$16 -11931.2031 864.5938 moveto -P$1h -11938.1094 869.7188 moveto -P$15 -11940.2656 869.2656 moveto -P$16 -11943.125 863.8906 moveto -P$1k -11948.6719 867.2031 moveto -P$1w -11948.6719 866.2969 moveto -P$1x -11958.4531 869.6563 moveto -P$2c -11959.5313 872.2031 moveto -P$2d -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11829 884 moveto -134 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11829 892 moveto -134 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -100 48 6747 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -99 47 6747.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -98 46 6748 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -97 45 6748.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -96 44 6749 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -95 43 6749.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -94 42 6750 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -93 41 6750.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -92 40 6751 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -100 48 6743 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -100 48 6743 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6758 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6758 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6760.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6774.3594 477.2344 moveto -P$22 -6773.1719 476.2656 moveto -P$23 -6786.75 481.4688 moveto -P$1s -6785.6719 481.1406 moveto -P$1t -6792.9375 479.4531 moveto -P$1j -6799.2344 479.7188 moveto -P$21 -6805.125 478.4531 moveto -P$18 -6805.125 475.8906 moveto -P$19 -6812.3125 478.6406 moveto -P$17 -6819.3125 478.6406 moveto -P$17 -6822.125 478.4531 moveto -P$18 -6822.125 475.8906 moveto -P$19 -6827.6719 479.2031 moveto -P$1w -6827.6719 478.2969 moveto -P$1x -6838.5938 481.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6744 496 moveto -98 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6744 504 moveto -98 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -84 48 6759.5 592 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -83 47 6760 592.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -82 46 6760.5 593 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -81 45 6761 593.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -80 44 6761.5 594 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -79 43 6762 594.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -78 42 6762.5 595 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -77 41 6763 595.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -76 40 6763.5 596 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -84 48 6755.5 588 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -84 48 6755.5 588 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6770.5 604 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6770.5 604 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6773.4688 609.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6786.8594 601.2344 moveto -P$22 -6785.6719 600.2656 moveto -P$23 -6797.4375 603.4531 moveto -P$1j -6798.625 602.4531 moveto -P$18 -6798.625 599.8906 moveto -P$19 -6800.8594 602.4531 moveto -P$2b -6807.625 602.4531 moveto -P$18 -6807.625 599.8906 moveto -P$19 -6810.625 599.8906 moveto -P$1k -6819.25 605.4688 moveto -P$1s -6818.1719 605.1406 moveto -P$1t -6825.9531 605.6563 moveto -P$2c -6827.0313 608.2031 moveto -P$2d -6835.25 605.4688 moveto -P$1s -6834.1719 605.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6756.5 620 moveto -82 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6756.5 628 moveto -82 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -87 48 12296.8 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -86 47 12297.3 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -85 46 12297.8 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -84 45 12298.3 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -83 44 12298.8 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -82 43 12299.3 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -81 42 12299.8 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -80 41 12300.3 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -79 40 12300.8 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -87 48 12292.8 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -87 48 12292.8 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -12307.8 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12307.8 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12310.7688 113.6406 moveto -P$11 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -12322.9719 104.2656 moveto +3242.9219 724.2656 moveto P$2i -12335.55 109.4688 moveto -P$1s -12334.4719 109.1406 moveto -P$1t -12340.6594 113.625 moveto -P$24 -12349.2219 104.5469 moveto -P$1m -12353.0031 104.5938 moveto -P$1h -12359.4719 107.2031 moveto -P$1w -12359.4719 106.2969 moveto -P$1x -12368.7375 107.4531 moveto -P$1j -12375.55 109.4688 moveto -P$1s -12374.4719 109.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12293.8 124 moveto -85 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12293.8 132 moveto -85 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -88 48 6342.5 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -87 47 6343 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -86 46 6343.5 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -85 45 6344 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -84 44 6344.5 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -83 43 6345 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -82 42 6345.5 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -81 41 6346 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -80 40 6346.5 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -88 48 6338.5 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -88 48 6338.5 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6353.5 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6353.5 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6356.4688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6368.6719 352.2656 moveto -P$2j -6384.25 357.4688 moveto -P$1s -6383.1719 357.1406 moveto -P$1t -6390.8125 354.6406 moveto -P$17 -6397.8125 354.6406 moveto -P$17 -6403.6094 357.7188 moveto -P$15 -6405.7656 357.2656 moveto -P$16 -6412.9531 357.6563 moveto -P$2c -6414.0313 360.2031 moveto -P$2d -6422.25 357.4688 moveto -P$1s -6421.1719 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6339.5 372 moveto -86 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6339.5 380 moveto -86 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -114 48 6504 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -113 47 6504.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -112 46 6505 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -111 45 6505.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -110 44 6506 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -109 43 6506.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -108 42 6507 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -107 41 6507.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -106 40 6508 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -114 48 6500 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -114 48 6500 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6515 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6515 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6517.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6530.1719 476.2656 moveto -P$2j -6545.75 481.4688 moveto -P$1s -6544.6719 481.1406 moveto -P$1t -6552.3125 478.6406 moveto -P$17 -6559.3125 478.6406 moveto -P$17 -6565.1094 481.7188 moveto -P$15 -6567.2656 481.2656 moveto -P$16 -6574.4531 481.6563 moveto -P$2c -6575.5313 484.2031 moveto -P$2d -6583.75 481.4688 moveto -P$1s -6582.6719 481.1406 moveto -P$1t -6587.3594 477.2344 moveto -P$22 -6586.1719 476.2656 moveto -P$23 -6597.1094 481.7188 moveto -P$15 -6599.2656 481.2656 moveto -P$16 -6605.9375 479.4531 moveto -P$1j -6608.2031 476.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6501 496 moveto -112 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6501 504 moveto -112 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -76 48 6222 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -75 47 6222.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -74 46 6223 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -73 45 6223.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -72 44 6224 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -71 43 6224.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -70 42 6225 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -69 41 6225.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -68 40 6226 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -76 48 6218 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -76 48 6218 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6233 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6233 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6235.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6246.9688 352.2656 moveto +3250.9844 727.7188 moveto +P$1a +3259.8594 729.7188 moveto P$1i -6260.5938 357.0469 moveto -P$29 -6266.9375 355.4531 moveto +3262.0156 729.2656 moveto P$1j -6273.75 357.4688 moveto -P$1s -6272.6719 357.1406 moveto -P$1t -6279.1094 357.7188 moveto -P$15 -6281.2656 357.2656 moveto -P$16 -6288.4531 355.4531 moveto -P$1f -6284.7813 357.7344 moveto -P$1g -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6219 372 moveto -74 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6219 380 moveto -74 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -148 48 6321 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -147 47 6321.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -146 46 6322 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -145 45 6322.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -144 44 6323 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -143 43 6323.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -142 42 6324 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -141 41 6324.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -140 40 6325 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -148 48 6317 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -148 48 6317 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6332 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6332 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6334.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6345.9688 476.2656 moveto -P$1i -6359.5938 481.0469 moveto -P$29 -6365.9375 479.4531 moveto -P$1j -6372.75 481.4688 moveto -P$1s -6371.6719 481.1406 moveto -P$1t -6378.1094 481.7188 moveto -P$15 -6380.2656 481.2656 moveto -P$16 -6387.4531 479.4531 moveto -P$1f -6383.7813 481.7344 moveto -P$1g -6396.75 481.4688 moveto -P$1s -6395.6719 481.1406 moveto -P$1t -6403.4531 479.4531 moveto -P$1f -6399.7813 481.7344 moveto -P$1g -6407.1719 476.2656 moveto -P$2j -6422.75 481.4688 moveto -P$1s -6421.6719 481.1406 moveto -P$1t -6429.3125 478.6406 moveto -P$17 -6436.3125 478.6406 moveto -P$17 -6442.1094 481.7188 moveto -P$15 -6444.2656 481.2656 moveto -P$16 -6451.4531 481.6563 moveto -P$2c -6452.5313 484.2031 moveto -P$2d -6460.75 481.4688 moveto -P$1s -6459.6719 481.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6318 496 moveto -146 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6318 504 moveto -146 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -64 48 6222 468 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -63 47 6222.5 468.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -62 46 6223 469 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -61 45 6223.5 469.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -60 44 6224 470 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -59 43 6224.5 470.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -58 42 6225 471 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -57 41 6225.5 471.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -56 40 6226 472 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -64 48 6218 464 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -64 48 6218 464 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -6233 480 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6233 480 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6235.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -6249.3594 477.2344 moveto -P$22 -6248.1719 476.2656 moveto -P$23 -6259.1094 481.7188 moveto -P$15 -6261.2656 481.2656 moveto -P$16 -6267.9375 479.4531 moveto -P$1j -6270.2031 476.5938 moveto -P$1h -6276.8594 485.625 moveto -P$24 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6219 496 moveto -62 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6219 504 moveto -62 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -72 48 8078 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -71 47 8078.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -70 46 8079 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -69 45 8079.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -68 44 8080 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -67 43 8080.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -66 42 8081 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -65 41 8081.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -64 40 8082 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -72 48 8074 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -72 48 8074 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8089 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8089 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8091.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8105.3594 353.2344 moveto -P$2m -8104.1719 352.2656 moveto -P$2n -8113.125 354.4531 moveto -P$18 -8113.125 351.8906 moveto -P$19 -8120.4531 357.6563 moveto -P$2c -8121.5313 360.2031 moveto -P$2d -8129.75 357.4688 moveto -P$1s -8128.6719 357.1406 moveto -P$1t -8136.3125 354.6406 moveto -P$17 -8140.2031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8075 372 moveto -70 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8075 380 moveto -70 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -103 48 7939.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -102 47 7940.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -101 46 7940.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -100 45 7941.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -99 44 7941.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -98 43 7942.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -97 42 7942.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -96 41 7943.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -95 40 7943.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -103 48 7935.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -103 48 7935.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7950.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7950.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7953.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7965.9219 352.2656 moveto -P$25 -7977.4219 355.2031 moveto -P$1w -7977.4219 354.2969 moveto -P$1x -7983.9531 352.5938 moveto -P$1h -7987.875 354.4531 moveto -P$18 -7987.875 351.8906 moveto -P$19 -7994.2031 351.8906 moveto -P$2l -7994.875 354.4531 moveto -P$18 -7994.875 351.8906 moveto -P$19 -8002.6094 354.7031 moveto -P$1a -8007.8594 357.7188 moveto -P$15 -8010.0156 357.2656 moveto -P$16 -8013.9531 352.5938 moveto -P$1h -8017.875 354.4531 moveto -P$18 -8017.875 351.8906 moveto -P$19 -8023.4219 355.2031 moveto -P$1w -8023.4219 354.2969 moveto -P$1x -8034.3438 357.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7936.75 372 moveto -101 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7936.75 380 moveto -101 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -100 48 7804 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -99 47 7804.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -98 46 7805 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -97 45 7805.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -96 44 7806 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -95 43 7806.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -94 42 7807 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -93 41 7807.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -92 40 7808 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -100 48 7800 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -100 48 7800 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -7815 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7815 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7817.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -7833.7344 353.0625 moveto -P$1n -7835.3906 360.8594 moveto -P$2u -7839.0156 358.4219 moveto -P$1d -7841.7344 354.2969 moveto -P$1e -7852.75 357.4688 moveto -P$1s -7851.6719 357.1406 moveto -P$1t -7855.0156 358.4219 moveto -P$1d -7857.7344 354.2969 moveto -P$1e -7868.75 357.4688 moveto -P$1s -7867.6719 357.1406 moveto -P$1t -7871.1719 352.2656 moveto -P$2e -7875.2031 352.5938 moveto -P$1h -7884.75 357.4688 moveto -P$1s -7883.6719 357.1406 moveto -P$1t -7892.2344 355.7188 moveto -P$21 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7801 372 moveto -98 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7801 380 moveto -98 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -156 48 8395 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -155 47 8395.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -154 46 8396 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -153 45 8396.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -152 44 8397 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -151 43 8397.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -150 42 8398 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -149 41 8398.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -148 40 8399 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -156 48 8391 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -156 48 8391 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8406 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8406 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8408.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8422.3594 353.2344 moveto -P$2m -8421.1719 352.2656 moveto -P$2n -8432.8594 361.625 moveto -P$24 -8441.5938 357.0469 moveto -P$1z -8447.1094 357.7188 moveto -P$15 -8449.2656 357.2656 moveto -P$16 -8457.2344 355.7188 moveto -P$21 -8463.125 354.4531 moveto -P$18 -8463.125 351.8906 moveto -P$19 -8470.8594 354.7031 moveto -P$1a -8476.1094 353.4375 moveto -P$1b -8475.4375 352.2656 moveto -P$1c -8485.3125 354.6406 moveto -P$17 -8492.3125 354.6406 moveto -P$17 -8497.6719 355.2031 moveto -P$1w -8497.6719 354.2969 moveto -P$1x -8507.8594 354.7031 moveto -P$1a -8510.125 354.4531 moveto -P$18 -8510.125 351.8906 moveto -P$19 -8516.1094 357.7188 moveto -P$15 -8518.2656 357.2656 moveto -P$16 -8522.2031 352.5938 moveto -P$1h -8526.125 354.4531 moveto -P$18 -8526.125 351.8906 moveto -P$19 -8531.6719 355.2031 moveto -P$1w -8531.6719 354.2969 moveto -P$1x -8542.5938 357.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8392 372 moveto -154 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8392 380 moveto -154 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -153 48 8206.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -152 47 8207.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -151 46 8207.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -150 45 8208.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -149 44 8208.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -148 43 8209.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -147 42 8209.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -146 41 8210.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -145 40 8210.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -153 48 8202.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -153 48 8202.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -8217.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8217.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8220.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -8234.1094 353.2344 moveto -P$2m -8232.9219 352.2656 moveto -P$2n -8244.6094 361.625 moveto -P$24 -8253.3438 357.0469 moveto -P$1z -8258.8594 357.7188 moveto -P$15 -8261.0156 357.2656 moveto -P$16 -8268.9844 355.7188 moveto -P$21 -8274.875 354.4531 moveto -P$18 -8274.875 351.8906 moveto -P$19 -8282.6094 354.7031 moveto -P$1a -8288.4844 353.0625 moveto -P$1n -8288.4844 352.1094 moveto -P$1o -8298.5938 357.7344 moveto -P$1p -8294.9219 355.4531 moveto -P$1q -8301.875 354.4531 moveto -P$1r -8301.875 351.8906 moveto -P$19 -8310.5 357.4688 moveto -P$1s -8309.4219 357.1406 moveto -P$1t -8317.6094 354.7031 moveto -P$1a -8320.9531 352.5938 moveto -P$1h -8323.7188 352.2656 moveto -P$1i -8334.6094 361.625 moveto -P$24 -8338.9219 360.0313 moveto -P$1y -8342.5938 357.7344 moveto -P$1p -8351.5 357.4688 moveto -P$1s -8350.4219 357.1406 moveto -P$1t -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8203.75 372 moveto -151 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8203.75 380 moveto -151 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -155 48 9648.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -154 47 9649.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -153 46 9649.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -152 45 9650.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -151 44 9650.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -150 43 9651.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -149 42 9651.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -148 41 9652.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -147 40 9652.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -155 48 9644.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -155 48 9644.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9659.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9659.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9662.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -9676.1094 353.2344 moveto -P$22 -9674.9219 352.2656 moveto -P$23 -9685.4219 355.2031 moveto -P$1w -9685.4219 354.2969 moveto -P$1x -9694.6875 355.4531 moveto -P$1j -9696.9531 352.5938 moveto -P$1h -9700.875 351.8906 moveto -P$1k -9709.5 357.4688 moveto -P$1s -9708.4219 357.1406 moveto -P$1t -9712.9531 352.5938 moveto -P$1h -9718.1094 353.2344 moveto -P$2m -9716.9219 352.2656 moveto -P$2n -9728.8594 357.7188 moveto -P$15 -9731.0156 357.2656 moveto -P$16 -9734.9531 352.5938 moveto -P$1h -9741.8594 357.7188 moveto -P$15 -9744.0156 357.2656 moveto -P$16 -9748.1094 353.2344 moveto -P$22 -9746.9219 352.2656 moveto -P$23 -9758.6875 355.4531 moveto -P$1j -9762.4219 355.2031 moveto -P$1w -9762.4219 354.2969 moveto -P$1x -9767.1094 354.4531 moveto -P$2b -9773.875 354.4531 moveto -P$18 -9773.875 351.8906 moveto -P$19 -9781.2031 355.4531 moveto -P$1f -9777.5313 357.7344 moveto -P$1g -9790.5 357.4688 moveto -P$1s -9789.4219 357.1406 moveto -P$1t -9796.6875 355.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9645.75 372 moveto -153 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9645.75 380 moveto -153 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -167 48 12647.8 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -166 47 12648.3 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -165 46 12648.8 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -164 45 12649.3 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -163 44 12649.8 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -162 43 12650.3 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -161 42 12650.8 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -160 41 12651.3 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -159 40 12651.8 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -167 48 12643.8 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -167 48 12643.8 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -12658.8 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12658.8 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12661.7688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12675.1594 105.2344 moveto -P$22 -12673.9719 104.2656 moveto -P$23 -12685.7375 107.4531 moveto -P$1j -12692.55 109.4688 moveto -P$1s -12691.4719 109.1406 moveto -P$1t -12698.2531 103.8906 moveto -P$2l -12704.55 109.4688 moveto -P$1s -12703.4719 109.1406 moveto -P$1t -12710.7375 107.4531 moveto -P$1j -12717.55 109.4688 moveto -P$1s -12716.4719 109.1406 moveto -P$1t -12725.3938 109.0469 moveto -P$1z -12732.6594 106.7031 moveto -P$1a -12740.55 109.4688 moveto -P$1s -12739.4719 109.1406 moveto -P$1t -12744.1594 105.2344 moveto -P$22 -12742.9719 104.2656 moveto -P$23 -12753.9094 109.7188 moveto -P$15 -12756.0656 109.2656 moveto -P$16 -12762.7375 107.4531 moveto -P$1j -12766.9094 109.7188 moveto -P$15 -12769.0656 109.2656 moveto -P$16 -12777.0344 107.7188 moveto -P$21 -12788.55 109.4688 moveto -P$1s -12787.4719 109.1406 moveto -P$1t -12792.0031 104.5938 moveto -P$1h -12801.55 109.4688 moveto -P$1s -12800.4719 109.1406 moveto -P$1t -12807.7375 107.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12644.8 124 moveto -165 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12644.8 132 moveto -165 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -108 48 12504 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -107 47 12504.5 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -106 46 12505 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -105 45 12505.5 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -104 44 12506 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -103 43 12506.5 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -102 42 12507 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -101 41 12507.5 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -100 40 12508 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -108 48 12500 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -108 48 12500 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -12515 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12515 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12517.9688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12531.3594 105.2344 moveto -P$22 -12530.1719 104.2656 moveto -P$23 -12541.9375 107.4531 moveto -P$1j -12548.75 109.4688 moveto -P$1s -12547.6719 109.1406 moveto -P$1t -12554.4531 103.8906 moveto -P$2l -12560.75 109.4688 moveto -P$1s -12559.6719 109.1406 moveto -P$1t -12566.9375 107.4531 moveto -P$1j -12573.75 109.4688 moveto -P$1s -12572.6719 109.1406 moveto -P$1t -12581.5938 109.0469 moveto -P$1z -12588.8594 106.7031 moveto -P$1a -12596.75 109.4688 moveto -P$1s -12595.6719 109.1406 moveto -P$1t -12603.3125 106.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12501 124 moveto -106 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12501 132 moveto -106 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -167 48 12503.8 220 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -166 47 12504.3 220.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -165 46 12504.8 221 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -164 45 12505.3 221.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -163 44 12505.8 222 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -162 43 12506.3 222.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -161 42 12506.8 223 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -160 41 12507.3 223.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -159 40 12507.8 224 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -167 48 12499.8 216 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -167 48 12499.8 216 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -12514.8 232 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12514.8 232 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12517.7688 237.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12531.1594 229.2344 moveto -P$22 -12529.9719 228.2656 moveto -P$23 -12543.55 233.4688 moveto -P$1s -12542.4719 233.1406 moveto -P$1t -12549.7375 231.4531 moveto -P$1j -12554.2531 227.8906 moveto -P$2l -12560.55 233.4688 moveto -P$1s -12559.4719 233.1406 moveto -P$1t -12566.7375 231.4531 moveto -P$1j -12573.55 233.4688 moveto -P$1s -12572.4719 233.1406 moveto -P$1t -12581.3938 233.0469 moveto -P$1z -12588.6594 230.7031 moveto -P$1a -12596.55 233.4688 moveto -P$1s -12595.4719 233.1406 moveto -P$1t -12600.1594 229.2344 moveto -P$22 -12598.9719 228.2656 moveto -P$23 -12609.9094 233.7188 moveto -P$15 -12612.0656 233.2656 moveto -P$16 -12618.7375 231.4531 moveto -P$1j -12622.9094 233.7188 moveto -P$15 -12625.0656 233.2656 moveto -P$16 -12633.0344 231.7188 moveto -P$21 -12644.55 233.4688 moveto -P$1s -12643.4719 233.1406 moveto -P$1t -12648.0031 228.5938 moveto -P$1h -12657.55 233.4688 moveto -P$1s -12656.4719 233.1406 moveto -P$1t -12663.7375 231.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12500.8 248 moveto -165 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12500.8 256 moveto -165 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -86 48 12905 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -85 47 12905.5 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -84 46 12906 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -83 45 12906.5 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -82 44 12907 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -81 43 12907.5 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -80 42 12908 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -79 41 12908.5 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -78 40 12909 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -86 48 12901 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -86 48 12901 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -12916 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12916 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12918.9688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -12931.1719 104.2656 moveto -P$2e -12939.5938 109.0469 moveto -P$1z -12942.125 106.4531 moveto -P$18 -12942.125 103.8906 moveto -P$19 -12946.2031 104.5938 moveto -P$1h -12950.125 106.4531 moveto -P$18 -12950.125 103.8906 moveto -P$19 -12956.1094 109.7188 moveto -P$15 -12958.2656 109.2656 moveto -P$16 -12961.125 103.8906 moveto -P$1k -12964.125 106.4531 moveto -P$18 -12964.125 103.8906 moveto -P$19 -12966.6563 106.4531 moveto -P$2h -12977.75 109.4688 moveto -P$1s -12976.6719 109.1406 moveto -P$1t -12983.9375 107.4531 moveto -P$1j -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12902 124 moveto -84 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -12902 132 moveto -84 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -96 48 13194 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -95 47 13194.5 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -94 46 13195 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -93 45 13195.5 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -92 44 13196 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -91 43 13196.5 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -90 42 13197 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -89 41 13197.5 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -88 40 13198 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -96 48 13190 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -96 48 13190 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -13205 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13205 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -13207.9688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -13221.3594 105.2344 moveto -P$2m -13220.1719 104.2656 moveto -P$2n -13231.6719 107.2031 moveto -P$1w -13231.6719 106.2969 moveto -P$1x -13241.8594 106.7031 moveto -P$1a -13244.0156 110.4219 moveto -P$1d -13246.7344 106.2969 moveto -P$1e -13257.2344 107.7188 moveto -P$21 -13268.75 109.4688 moveto -P$1s -13267.6719 109.1406 moveto -P$1t -13276.5938 109.0469 moveto -P$1z -13280.2031 104.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13191 124 moveto -94 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13191 132 moveto -94 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -76 48 13083 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -75 47 13083.5 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -74 46 13084 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -73 45 13084.5 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -72 44 13085 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -71 43 13085.5 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -70 42 13086 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -69 41 13086.5 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -68 40 13087 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -76 48 13079 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -76 48 13079 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -13094 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13094 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -13096.9688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -13109.1719 104.2656 moveto -P$2e -13117.5938 109.0469 moveto -P$1z -13124.4531 107.4531 moveto -P$1f -13120.7813 109.7344 moveto -P$1g -13133.75 109.4688 moveto -P$1s -13132.6719 109.1406 moveto -P$1t -13141.5938 106.4531 moveto -P$28 -13142.1719 104.2656 moveto -P$2e -13149.4531 107.4531 moveto -P$1f -13145.7813 109.7344 moveto -P$1g -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13080 124 moveto -74 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13080 132 moveto -74 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -126 48 13403 96 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -125 47 13403.5 96.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -124 46 13404 97 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -123 45 13404.5 97.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -122 44 13405 98 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -121 43 13405.5 98.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -120 42 13406 99 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -119 41 13406.5 99.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -118 40 13407 100 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -126 48 13399 92 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -126 48 13399 92 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -13414 108 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13414 108 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -13416.9688 113.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -13434.4219 104.5469 moveto -P$1m -13442.75 109.4688 moveto -P$1s -13441.6719 109.1406 moveto -P$1t -13448.1094 109.7188 moveto -P$15 -13450.2656 109.2656 moveto -P$16 -13456.9375 107.4531 moveto -P$1j -13462.8594 106.7031 moveto -P$1a -13470.5938 109.0469 moveto -P$29 -13479.7344 104.9375 moveto -P$1l -13483.6719 107.2031 moveto -P$1w -13483.6719 106.2969 moveto -P$1x -13494.5938 109.0469 moveto -P$1z -13498.2031 104.5938 moveto -P$1h -13507.75 109.4688 moveto -P$1s -13506.6719 109.1406 moveto -P$1t -13515.5938 109.0469 moveto -P$1z -13519.2031 104.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13400 124 moveto -124 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -13400 132 moveto -124 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -65 48 9988.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -64 47 9989.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -63 46 9989.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -62 45 9990.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -61 44 9990.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -60 43 9991.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -59 42 9991.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -58 41 9992.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -57 40 9992.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -65 48 9984.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -65 48 9984.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -9999.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9999.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10002.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10014.9219 352.2656 moveto +3269.2031 729.6563 moveto P$2g -10023.4219 355.2031 moveto -P$1w -10023.4219 354.2969 moveto -P$1x -10033.2031 357.6563 moveto -P$2c -10034.2813 360.2031 moveto -P$2d -10036.875 354.4531 moveto -P$18 -10036.875 351.8906 moveto -P$19 -10045.3438 357.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9985.75 372 moveto -63 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9985.75 380 moveto -63 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -70 48 10202 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -69 47 10202.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -68 46 10203 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -67 45 10203.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -66 44 10204 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -65 43 10204.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -64 42 10205 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -63 41 10205.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -62 40 10206 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -70 48 10198 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -70 48 10198 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10213 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10213 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10215.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10231.1094 353.4375 moveto -P$1b -10230.4375 352.2656 moveto -P$1c -10240.4531 355.4531 moveto -P$1f -10236.7813 357.7344 moveto -P$1g -10249.2344 355.7188 moveto -P$21 -10255.125 354.4531 moveto -P$18 -10255.125 351.8906 moveto -P$19 -10263.5938 357.0469 moveto -P$1z -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10199 372 moveto -68 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10199 380 moveto -68 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -107 48 10419.8 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -106 47 10420.3 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -105 46 10420.8 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -104 45 10421.3 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -103 44 10421.8 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -102 43 10422.3 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -101 42 10422.8 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -100 41 10423.3 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -99 40 10423.8 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -107 48 10415.8 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -107 48 10415.8 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10430.8 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10430.8 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10433.7688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10447.1594 353.2344 moveto -P$22 -10445.9719 352.2656 moveto -P$23 -10459.55 357.4688 moveto +3270.2813 732.2031 moveto +P$2h +3278.5 729.4688 moveto +P$1r +3277.4219 729.1406 moveto P$1s -10458.4719 357.1406 moveto -P$1t -10465.7375 355.4531 moveto -P$1j -10472.0344 355.7188 moveto -P$21 -10477.925 354.4531 moveto -P$18 -10477.925 351.8906 moveto -P$19 -10485.1125 354.6406 moveto -P$17 -10492.1125 354.6406 moveto -P$17 -10494.925 354.4531 moveto -P$18 -10494.925 351.8906 moveto -P$19 -10500.4719 355.2031 moveto -P$1w -10500.4719 354.2969 moveto -P$1x -10511.3938 357.0469 moveto -P$1z -10518.1125 354.6406 moveto -P$17 -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10416.8 372 moveto -105 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10416.8 380 moveto -105 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -132 48 10687 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -131 47 10687.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -130 46 10688 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -129 45 10688.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -128 44 10689 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -127 43 10689.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -126 42 10690 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -125 41 10690.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -124 40 10691 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -132 48 10683 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -132 48 10683 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -10698 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10698 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10700.9688 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -10712.4063 352.2656 moveto -P$2o -10729.75 357.4688 moveto -P$1s -10728.6719 357.1406 moveto -P$1t -10736.8438 357.7344 moveto -P$1p -10733.1719 355.4531 moveto -P$1q -10741.3594 353.2344 moveto -P$2m -10740.1719 352.2656 moveto -P$2n -10754.75 357.4688 moveto -P$1s -10753.6719 357.1406 moveto -P$1t -10756.3594 354.4531 moveto -P$2b -10768.4219 352.5469 moveto -P$1m -10771.0156 358.4219 moveto -P$1d -10773.7344 354.2969 moveto -P$1e -10780.1719 360.0313 moveto -P$1y -10783.8438 357.7344 moveto -P$1p -10788.1719 360.0313 moveto -P$1y -10791.8438 357.7344 moveto -P$1p -10797.6719 355.2031 moveto -P$1w -10797.6719 354.2969 moveto -P$1x -10806.9375 355.4531 moveto -P$1j -10809.2031 352.5938 moveto -P$1h -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10684 372 moveto -130 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10684 380 moveto -130 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -163 48 1835.75 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -162 47 1836.25 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -161 46 1836.75 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -160 45 1837.25 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -159 44 1837.75 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -158 43 1838.25 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -157 42 1838.75 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -156 41 1839.25 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -155 40 1839.75 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -163 48 1831.75 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -163 48 1831.75 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1846.75 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1846.75 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1849.7188 361.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1863.1094 356.8438 moveto -P$12 -1863.1094 353.2344 moveto -P$13 -1861.9219 352.2656 moveto -P$14 -1872.4219 355.2031 moveto -P$1w -1872.4219 354.2969 moveto -P$1x -1880.4219 355.2031 moveto -P$1w -1880.4219 354.2969 moveto -P$1x -1885.8438 351.8906 moveto -P$2k -1897.9844 355.7188 moveto -P$21 -1906.8594 357.7188 moveto -P$15 -1909.0156 357.2656 moveto +3283.8594 725.4375 moveto P$16 -1915.6875 355.4531 moveto -P$1j -1916.8438 351.8906 moveto -P$2k -1926.8594 353.4375 moveto -P$1b -1926.1875 352.2656 moveto -P$1c -1932.9219 360.0313 moveto -P$1y -1936.5938 357.7344 moveto -P$1p -1940.9219 360.0313 moveto -P$1y -1944.5938 357.7344 moveto -P$1p -1947.875 351.8906 moveto +3283.1875 724.2656 moveto +P$17 +3293.0625 726.6406 moveto +P$1o +3300.0625 726.6406 moveto +P$1o +3308.5 729.4688 moveto +P$1r +3307.4219 729.1406 moveto +P$1s +3311.9531 724.5938 moveto P$1k -1950.875 354.4531 moveto -P$18 -1950.875 351.8906 moveto -P$19 -1958.6094 354.7031 moveto +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3213.75 744 moveto +103 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3213.75 752 moveto +103 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +131 48 3737.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +130 47 3738.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +129 46 3738.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +128 45 3739.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +127 44 3739.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +126 43 3740.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +125 42 3740.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +124 41 3741.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +123 40 3741.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +131 48 3733.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +131 48 3733.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3748.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3748.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3751.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3763.9219 864.2656 moveto +P$2i +3771.9844 867.7188 moveto P$1a -1963.8594 357.7188 moveto -P$15 -1966.0156 357.2656 moveto -P$16 -1969.9531 352.5938 moveto +3780.8594 869.7188 moveto +P$1i +3783.0156 869.2656 moveto +P$1j +3790.2031 869.6563 moveto +P$2g +3791.2813 872.2031 moveto +P$2h +3799.5 869.4688 moveto +P$1r +3798.4219 869.1406 moveto +P$1s +3801.9219 864.2656 moveto +P$2m +3811.875 866.4531 moveto +P$1b +3811.875 863.8906 moveto +P$1c +3819.9844 867.7188 moveto +P$1a +3831.5 869.4688 moveto +P$1r +3830.4219 869.1406 moveto +P$1s +3832.7188 864.2656 moveto +P$1p +3843.6094 873.625 moveto +P$1q +3847.9219 872.0313 moveto +P$1e +3851.5938 869.7344 moveto +P$1f +3860.5 869.4688 moveto +P$1r +3859.4219 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3734.75 884 moveto +129 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3734.75 892 moveto +129 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +170 48 2543 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +169 47 2543.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +168 46 2544 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +167 45 2544.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +166 44 2545 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +165 43 2545.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +164 42 2546 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +163 41 2546.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +162 40 2547 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +170 48 2539 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +170 48 2539 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2554 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2554 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2556.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2569.1719 352.2656 moveto +P$2i +2573.2031 352.5938 moveto +P$1k +2582.75 357.4688 moveto +P$1r +2581.6719 357.1406 moveto +P$1s +2590.2344 355.7188 moveto +P$1a +2594.9688 352.2656 moveto +P$1p +2608.75 357.4688 moveto +P$1r +2607.6719 357.1406 moveto +P$1s +2616.2344 355.7188 moveto +P$1a +2623.1719 360.0313 moveto +P$1e +2626.8438 357.7344 moveto +P$1f +2630.125 351.8906 moveto +P$1g +2636.1094 357.7188 moveto +P$1i +2638.2656 357.2656 moveto +P$1j +2642.2031 352.5938 moveto +P$1k +2651.75 357.4688 moveto +P$1r +2650.6719 357.1406 moveto +P$1s +2654.1719 352.2656 moveto +P$2m +2667.1094 357.7188 moveto +P$1i +2669.2656 357.2656 moveto +P$1j +2673.1719 360.0313 moveto +P$1e +2676.8438 357.7344 moveto +P$1f +2681.1719 360.0313 moveto +P$1e +2684.8438 357.7344 moveto +P$1f +2688.125 354.4531 moveto +P$1b +2688.125 351.8906 moveto +P$1c +2696.5938 357.0469 moveto +P$1d +2703.4531 357.6563 moveto +P$2g +2704.5313 360.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2540 372 moveto +168 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2540 380 moveto +168 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +84 48 3357.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +83 47 3358 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +82 46 3358.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +81 45 3359 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +80 44 3359.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +79 43 3360 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +78 42 3360.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +77 41 3361 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +76 40 3361.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +84 48 3353.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +84 48 3353.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3368.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3368.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3371.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3383.6719 724.2656 moveto +P$2j +3389.625 726.4531 moveto +P$1b +3389.625 723.8906 moveto +P$1c +3395.9531 723.8906 moveto +P$2o +3402.25 729.4688 moveto +P$1r +3401.1719 729.1406 moveto +P$1s +3409.3594 726.7031 moveto P$1h -1973.875 354.4531 moveto -P$18 -1973.875 351.8906 moveto -P$19 -1979.4219 355.2031 moveto +3414.3594 733.625 moveto +P$1q +3422.3594 726.7031 moveto +P$1h +3424.625 723.8906 moveto +P$1g +3433.25 729.4688 moveto +P$1r +3432.1719 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3354.5 744 moveto +82 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3354.5 752 moveto +82 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +143 48 3263.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +142 47 3264.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +141 46 3264.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +140 45 3265.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +139 44 3265.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +138 43 3266.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +137 42 3266.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +136 41 3267.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +135 40 3267.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +143 48 3259.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +143 48 3259.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3274.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3274.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3277.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3289.9219 864.2656 moveto +P$2j +3295.875 866.4531 moveto +P$1b +3295.875 863.8906 moveto +P$1c +3302.2031 863.8906 moveto +P$2o +3308.5 869.4688 moveto +P$1r +3307.4219 869.1406 moveto +P$1s +3315.6094 866.7031 moveto +P$1h +3320.6094 873.625 moveto +P$1q +3328.6094 866.7031 moveto +P$1h +3330.875 863.8906 moveto +P$1g +3339.5 869.4688 moveto +P$1r +3338.4219 869.1406 moveto +P$1s +3343.1094 865.2344 moveto +P$2p +3341.9219 864.2656 moveto +P$2q +3356.5 869.4688 moveto +P$1r +3355.4219 869.1406 moveto +P$1s +3362.2031 863.8906 moveto +P$2o +3362.875 866.4531 moveto +P$1b +3362.875 863.8906 moveto +P$1c +3371.3438 869.0469 moveto +P$1d +3373.875 866.4531 moveto +P$1b +3373.875 863.8906 moveto +P$1c +3377.9531 864.5938 moveto +P$1k +3381.875 866.4531 moveto +P$1b +3381.875 863.8906 moveto +P$1c +3387.4219 867.2031 moveto +P$1l +3387.4219 866.2969 moveto +P$1m +3398.3438 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3260.75 884 moveto +141 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3260.75 892 moveto +141 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +129 48 3328.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +128 47 3329.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +127 46 3329.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +126 45 3330.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +125 44 3330.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +124 43 3331.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +123 42 3331.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +122 41 3332.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +121 40 3332.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +129 48 3324.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +129 48 3324.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3339.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3339.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3342.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3354.9219 600.2656 moveto +P$2j +3360.875 602.4531 moveto +P$1b +3360.875 599.8906 moveto +P$1c +3367.2031 599.8906 moveto +P$2o +3373.5 605.4688 moveto +P$1r +3372.4219 605.1406 moveto +P$1s +3380.6094 602.7031 moveto +P$1h +3385.6094 609.625 moveto +P$1q +3393.6094 602.7031 moveto +P$1h +3395.875 599.8906 moveto +P$1g +3404.5 605.4688 moveto +P$1r +3403.4219 605.1406 moveto +P$1s +3412.1719 600.5469 moveto +P$1z +3420.5 605.4688 moveto +P$1r +3419.4219 605.1406 moveto +P$1s +3426.6875 603.4531 moveto +P$1y +3427.1094 602.4531 moveto +P$2f +3433.875 602.4531 moveto +P$1b +3433.875 599.8906 moveto +P$1c +3441.6094 602.7031 moveto +P$1h +3449.5 605.4688 moveto +P$1r +3448.4219 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3325.75 620 moveto +127 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3325.75 628 moveto +127 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +56 48 1764.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +55 47 1765 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +54 46 1765.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +53 45 1766 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +52 44 1766.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +51 43 1767 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +50 42 1767.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +49 41 1768 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +48 40 1768.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +56 48 1760.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +56 48 1760.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1775.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1775.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1778.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1790.6719 352.2656 moveto +P$2j +1796.625 354.4531 moveto +P$1b +1796.625 351.8906 moveto +P$1c +1805.0938 357.0469 moveto +P$1d +1807.5938 351.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1761.5 372 moveto +54 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1761.5 380 moveto +54 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +93 48 3475.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +92 47 3476.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +91 46 3476.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +90 45 3477.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +89 44 3477.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +88 43 3478.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +87 42 3478.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +86 41 3479.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +85 40 3479.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +93 48 3471.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +93 48 3471.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3486.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3486.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3489.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3501.9219 724.2656 moveto +P$2m +3511.875 726.4531 moveto +P$1b +3511.875 723.8906 moveto +P$1c +3519.9844 727.7188 moveto +P$1a +3531.5 729.4688 moveto +P$1r +3530.4219 729.1406 moveto +P$1s +3532.7188 724.2656 moveto +P$1p +3543.6094 733.625 moveto +P$1q +3547.9219 732.0313 moveto +P$1e +3551.5938 729.7344 moveto +P$1f +3560.5 729.4688 moveto +P$1r +3559.4219 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3472.75 744 moveto +91 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3472.75 752 moveto +91 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +154 48 3442 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +153 47 3442.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +152 46 3443 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +151 45 3443.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +150 44 3444 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +149 43 3444.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +148 42 3445 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +147 41 3445.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +146 40 3446 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +154 48 3438 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +154 48 3438 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3453 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3453 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3455.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3468.1719 864.2656 moveto +P$2m +3478.125 866.4531 moveto +P$1b +3478.125 863.8906 moveto +P$1c +3486.2344 867.7188 moveto +P$1a +3497.75 869.4688 moveto +P$1r +3496.6719 869.1406 moveto +P$1s +3498.9688 864.2656 moveto +P$1p +3509.8594 873.625 moveto +P$1q +3514.1719 872.0313 moveto +P$1e +3517.8438 869.7344 moveto +P$1f +3526.75 869.4688 moveto +P$1r +3525.6719 869.1406 moveto +P$1s +3529.1719 864.2656 moveto +P$26 +3542.5938 866.4531 moveto +P$2c +3544.2031 864.5938 moveto +P$1k +3553.75 869.4688 moveto +P$1r +3552.6719 869.1406 moveto +P$1s +3561.5938 869.0469 moveto +P$1d +3568.3125 866.6406 moveto +P$1o +3571.125 866.4531 moveto +P$1b +3571.125 863.8906 moveto +P$1c +3576.6719 867.2031 moveto +P$1l +3576.6719 866.2969 moveto +P$1m +3587.5938 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3439 884 moveto +152 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3439 892 moveto +152 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +134 48 1855 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +133 47 1855.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +132 46 1856 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +131 45 1856.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +130 44 1857 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +129 43 1857.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +128 42 1858 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +127 41 1858.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +126 40 1859 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +134 48 1851 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +134 48 1851 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1866 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1866 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1868.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1881.1719 352.2656 moveto +P$2m +1891.125 354.4531 moveto +P$1b +1891.125 351.8906 moveto +P$1c +1899.2344 355.7188 moveto +P$1a +1910.75 357.4688 moveto +P$1r +1909.6719 357.1406 moveto +P$1s +1911.9688 352.2656 moveto +P$1p +1922.8594 361.625 moveto +P$1q +1927.1719 360.0313 moveto +P$1e +1930.8438 357.7344 moveto +P$1f +1939.75 357.4688 moveto +P$1r +1938.6719 357.1406 moveto +P$1s +1947.4219 352.5469 moveto +P$1z +1951.2031 352.5938 moveto +P$1k +1958.1094 357.7188 moveto +P$1i +1960.2656 357.2656 moveto +P$1j +1964.2031 352.5938 moveto +P$1k +1968.0156 358.4219 moveto P$1w -1979.4219 354.2969 moveto +1970.7344 354.2969 moveto P$1x -1990.3438 357.0469 moveto +1980.3125 354.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1852 372 moveto +132 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1852 380 moveto +132 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +71 48 3631.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +70 47 3632.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +69 46 3632.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +68 45 3633.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +67 44 3633.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +66 43 3634.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +65 42 3634.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +64 41 3635.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +63 40 3635.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +71 48 3627.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +71 48 3627.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3642.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3642.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3645.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3659.1094 865.2344 moveto +P$27 +3657.9219 864.2656 moveto +P$28 +3671.3438 869.0469 moveto +P$2d +3676.8594 869.7188 moveto +P$1i +3679.0156 869.2656 moveto +P$1j +3686.0625 866.6406 moveto +P$1o +3694.5 869.4688 moveto +P$1r +3693.4219 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3628.75 884 moveto +69 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3628.75 892 moveto +69 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +130 48 3602 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +129 47 3602.5 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +128 46 3603 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +127 45 3603.5 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +126 44 3604 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +125 43 3604.5 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +124 42 3605 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +123 41 3605.5 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +122 40 3606 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +130 48 3598 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +130 48 3598 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3613 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3613 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3615.9688 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3629.3594 1005.2344 moveto +P$27 +3628.1719 1004.2656 moveto +P$28 +3641.5938 1009.0469 moveto +P$2d +3647.1094 1009.7188 moveto +P$1i +3649.2656 1009.2656 moveto +P$1j +3656.3125 1006.6406 moveto +P$1o +3664.75 1009.4688 moveto +P$1r +3663.6719 1009.1406 moveto +P$1s +3668.3594 1005.2344 moveto +P$2p +3667.1719 1004.2656 moveto +P$2q +3681.75 1009.4688 moveto +P$1r +3680.6719 1009.1406 moveto +P$1s +3687.4531 1003.8906 moveto +P$2o +3688.125 1006.4531 moveto +P$1b +3688.125 1003.8906 moveto +P$1c +3696.5938 1009.0469 moveto +P$1d +3699.125 1006.4531 moveto +P$1b +3699.125 1003.8906 moveto +P$1c +3703.2031 1004.5938 moveto +P$1k +3707.125 1006.4531 moveto +P$1b +3707.125 1003.8906 moveto +P$1c +3712.6719 1007.2031 moveto +P$1l +3712.6719 1006.2969 moveto +P$1m +3723.5938 1009.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3599 1024 moveto +128 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3599 1032 moveto +128 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +105 48 1754.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +104 47 1755.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +103 46 1755.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +102 45 1756.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +101 44 1756.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +100 43 1757.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +99 42 1757.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +98 41 1758.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +97 40 1758.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +105 48 1750.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +105 48 1750.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1765.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1765.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1768.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1782.1094 477.2344 moveto +P$27 +1780.9219 476.2656 moveto +P$28 +1788.7656 482.4219 moveto +P$1w +1791.4844 478.2969 moveto +P$1x +1801.5938 481.7344 moveto +P$1f +1797.9219 479.4531 moveto +P$22 +1804.875 475.8906 moveto +P$1g +1807.875 478.4531 moveto +P$1b +1807.875 475.8906 moveto +P$1c +1815.0625 478.6406 moveto +P$1o +1823.3438 481.0469 moveto +P$2d +1825.9219 476.2656 moveto +P$2j +1834.4219 479.2031 moveto +P$1l +1834.4219 478.2969 moveto +P$1m +1844.6094 478.7031 moveto +P$1h +1846.8438 475.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1751.75 496 moveto +103 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1751.75 504 moveto +103 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +140 48 1895 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +139 47 1895.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +138 46 1896 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +137 45 1896.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +136 44 1897 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +135 43 1897.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +134 42 1898 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +133 41 1898.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +132 40 1899 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +140 48 1891 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +140 48 1891 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1906 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1906 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1908.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1922.3594 477.2344 moveto +P$27 +1921.1719 476.2656 moveto +P$28 +1931.6719 479.2031 moveto +P$1l +1931.6719 478.2969 moveto +P$1m +1941.3125 478.6406 moveto +P$1o +1945.2031 476.5938 moveto +P$1k +1955.7344 476.9375 moveto +P$14 +1959.6719 479.2031 moveto +P$1l +1959.6719 478.2969 moveto +P$1m +1970.5938 481.0469 moveto +P$1d +1972.3594 478.4531 moveto +P$2f +1984.75 481.4688 moveto +P$1r +1983.6719 481.1406 moveto +P$1s +1990.9375 479.4531 moveto +P$1y +1993.2031 476.5938 moveto +P$1k +1997.1719 476.2656 moveto +P$1n +2004.9688 476.2656 moveto +P$1p +2013.1719 476.2656 moveto +P$2m +2023.1719 476.2656 moveto +P$2j +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1892 496 moveto +138 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1892 504 moveto +138 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +133 48 2070.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +132 47 2071.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +131 46 2071.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +130 45 2072.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +129 44 2072.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +128 43 2073.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +127 42 2073.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +126 41 2074.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +125 40 2074.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +133 48 2066.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +133 48 2066.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2081.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2081.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2084.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2098.1094 477.2344 moveto +P$27 +2096.9219 476.2656 moveto +P$28 +2108.6875 479.4531 moveto +P$1y +2115.5 481.4688 moveto +P$1r +2114.4219 481.1406 moveto +P$1s +2124.4844 476.9375 moveto +P$14 +2128.4219 479.2031 moveto +P$1l +2128.4219 478.2969 moveto +P$1m +2139.3438 481.0469 moveto +P$1d +2141.1094 478.4531 moveto +P$2f +2153.5 481.4688 moveto +P$1r +2152.4219 481.1406 moveto +P$1s +2159.6875 479.4531 moveto +P$1y +2161.9531 476.5938 moveto +P$1k +2165.9219 476.2656 moveto +P$1n +2173.7188 476.2656 moveto +P$1p +2181.9219 476.2656 moveto +P$2m +2191.9219 476.2656 moveto +P$2j +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2067.75 496 moveto +131 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2067.75 504 moveto +131 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +117 48 3142.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +116 47 3143.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +115 46 3143.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +114 45 3144.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +113 44 3144.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +112 43 3145.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +111 42 3145.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +110 41 3146.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +109 40 3146.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +117 48 3138.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +117 48 3138.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3153.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3153.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3156.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3170.1094 353.2344 moveto +P$27 +3168.9219 352.2656 moveto +P$28 +3176.7656 358.4219 moveto +P$1w +3179.4844 354.2969 moveto +P$1x +3189.5938 357.7344 moveto +P$1f +3185.9219 355.4531 moveto +P$22 +3192.875 351.8906 moveto +P$1g +3195.875 354.4531 moveto +P$1b +3195.875 351.8906 moveto +P$1c +3203.0625 354.6406 moveto +P$1o +3211.3438 357.0469 moveto +P$2d +3219.5 357.4688 moveto +P$1r +3218.4219 357.1406 moveto +P$1s +3226.2031 355.4531 moveto +P$18 +3222.5313 357.7344 moveto +P$19 +3229.9219 352.2656 moveto +P$2j +3235.875 354.4531 moveto +P$1b +3235.875 351.8906 moveto +P$1c +3244.3438 357.0469 moveto +P$1d +3246.8438 351.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3139.75 372 moveto +115 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3139.75 380 moveto +115 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +138 48 2151 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +137 47 2151.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +136 46 2152 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +135 45 2152.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +134 44 2153 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +133 43 2153.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +132 42 2154 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +131 41 2154.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +130 40 2155 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +138 48 2147 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +138 48 2147 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2162 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2162 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2164.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2181.3281 356.9063 moveto +P$2a +2178.3594 353.2344 moveto +P$2b +2190.75 357.4688 moveto +P$1r +2189.6719 357.1406 moveto +P$1s +2193.125 351.8906 moveto +P$1g +2199.1094 357.7188 moveto +P$1i +2201.2656 357.2656 moveto +P$1j +2205.2031 352.5938 moveto +P$1k +2209.125 354.4531 moveto +P$1b +2209.125 351.8906 moveto +P$1c +2214.6719 355.2031 moveto +P$1l +2214.6719 354.2969 moveto +P$1m +2225.5938 357.0469 moveto +P$1d +2231.1094 353.4375 moveto +P$16 +2230.4375 352.2656 moveto +P$17 +2237.2031 352.5938 moveto +P$1k +2242.2031 352.5938 moveto +P$1k +2249.9375 355.4531 moveto +P$1y +2251.125 354.4531 moveto +P$1b +2251.125 351.8906 moveto +P$1c +2258.8438 357.7344 moveto +P$1f +2255.1719 355.4531 moveto +P$22 +2262.0156 358.4219 moveto +P$1w +2264.7344 354.2969 moveto +P$1x +2271.2031 352.5938 moveto +P$1k +2280.75 357.4688 moveto +P$1r +2279.6719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2148 372 moveto +136 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2148 380 moveto +136 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +120 48 2561.5 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +119 47 2562 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +118 46 2562.5 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +117 45 2563 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +116 44 2563.5 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +115 43 2564 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +114 42 2564.5 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +113 41 2565 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +112 40 2565.5 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +120 48 2557.5 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +120 48 2557.5 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2572.5 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2572.5 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2575.4688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2591.8281 480.9063 moveto +P$2a +2588.8594 477.2344 moveto +P$2b +2601.25 481.4688 moveto +P$1r +2600.1719 481.1406 moveto +P$1s +2607.8125 478.6406 moveto +P$1o +2613.1719 479.2031 moveto +P$1l +2613.1719 478.2969 moveto +P$1m +2618.5156 482.4219 moveto +P$1w +2621.2344 478.2969 moveto +P$1x +2630.4375 479.4531 moveto +P$1y +2636.3594 478.7031 moveto +P$1h +2644.25 481.4688 moveto +P$1r +2643.1719 481.1406 moveto +P$1s +2645.4688 476.2656 moveto +P$1p +2656.3594 485.625 moveto +P$1q +2660.6719 484.0313 moveto +P$1e +2664.3438 481.7344 moveto +P$1f +2673.25 481.4688 moveto +P$1r +2672.1719 481.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2558.5 496 moveto +118 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2558.5 504 moveto +118 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +91 48 2024.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +90 47 2025.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +89 46 2025.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +88 45 2026.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +87 44 2026.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +86 43 2027.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +85 42 2027.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +84 41 2028.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +83 40 2028.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +91 48 2020.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +91 48 2020.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2035.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2035.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2038.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2055.0781 356.9063 moveto +P$2a +2052.1094 353.2344 moveto +P$2b +2064.5 357.4688 moveto +P$1r +2063.4219 357.1406 moveto +P$1s +2071.0625 354.6406 moveto +P$1o +2076.4219 355.2031 moveto +P$1l +2076.4219 354.2969 moveto +P$1m +2081.7656 358.4219 moveto +P$1w +2084.4844 354.2969 moveto +P$1x +2093.6875 355.4531 moveto +P$1y +2099.6094 354.7031 moveto +P$1h +2107.5 357.4688 moveto +P$1r +2106.4219 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2021.75 372 moveto +89 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2021.75 380 moveto +89 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +144 48 2239 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +143 47 2239.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +142 46 2240 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +141 45 2240.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +140 44 2241 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +139 43 2241.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +138 42 2242 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +137 41 2242.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +136 40 2243 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +144 48 2235 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +144 48 2235 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2250 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2250 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2252.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2269.3281 480.9063 moveto +P$2a +2266.3594 477.2344 moveto +P$2b +2278.75 481.4688 moveto +P$1r +2277.6719 481.1406 moveto +P$1s +2285.3125 478.6406 moveto +P$1o +2290.6719 479.2031 moveto +P$1l +2290.6719 478.2969 moveto +P$1m +2296.0156 482.4219 moveto +P$1w +2298.7344 478.2969 moveto +P$1x +2307.9375 479.4531 moveto +P$1y +2313.8594 478.7031 moveto +P$1h +2321.75 481.4688 moveto +P$1r +2320.6719 481.1406 moveto +P$1s +2324.1719 476.2656 moveto +P$2m +2337.1094 481.7188 moveto +P$1i +2339.2656 481.2656 moveto +P$1j +2343.1719 484.0313 moveto +P$1e +2346.8438 481.7344 moveto +P$1f +2351.1719 484.0313 moveto +P$1e +2354.8438 481.7344 moveto +P$1f +2358.125 478.4531 moveto +P$1b +2358.125 475.8906 moveto +P$1c +2366.5938 481.0469 moveto +P$1d +2373.4531 481.6563 moveto +P$2g +2374.5313 484.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2236 496 moveto +142 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2236 504 moveto +142 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +163 48 3065.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +162 47 3066.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +161 46 3066.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +160 45 3067.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +159 44 3067.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +158 43 3068.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +157 42 3068.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +156 41 3069.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +155 40 3069.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +163 48 3061.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +163 48 3061.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3076.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3076.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3079.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3096.0781 868.9063 moveto +P$2a +3093.1094 865.2344 moveto +P$2b +3105.5 869.4688 moveto +P$1r +3104.4219 869.1406 moveto +P$1s +3107.7656 870.4219 moveto +P$1w +3110.4844 866.2969 moveto +P$1x +3120.0625 866.6406 moveto +P$1o +3125.8594 869.7188 moveto +P$1i +3128.0156 869.2656 moveto +P$1j +3135.5938 869.7344 moveto +P$1f +3131.9219 867.4531 moveto +P$22 +3138.875 863.8906 moveto +P$1g +3147.5 869.4688 moveto +P$1r +3146.4219 869.1406 moveto +P$1s +3149.9219 864.2656 moveto +P$2i +3157.9844 867.7188 moveto +P$1a +3166.8594 869.7188 moveto +P$1i +3169.0156 869.2656 moveto +P$1j +3176.2031 869.6563 moveto +P$2g +3177.2813 872.2031 moveto +P$2h +3185.5 869.4688 moveto +P$1r +3184.4219 869.1406 moveto +P$1s +3190.8594 865.4375 moveto +P$16 +3190.1875 864.2656 moveto +P$17 +3200.0625 866.6406 moveto +P$1o +3207.0625 866.6406 moveto +P$1o +3215.5 869.4688 moveto +P$1r +3214.4219 869.1406 moveto +P$1s +3218.9531 864.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3062.75 884 moveto +161 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3062.75 892 moveto +161 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +190 48 1295 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +189 47 1295.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +188 46 1296 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +187 45 1296.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +186 44 1297 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +185 43 1297.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +184 42 1298 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +183 41 1298.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +182 40 1299 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +190 48 1291 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +190 48 1291 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1306 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1306 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1308.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1326.4219 476.5469 moveto +P$1z +1334.75 481.4688 moveto +P$1r +1333.6719 481.1406 moveto +P$1s +1341.8594 478.7031 moveto +P$1h +1345.2031 476.5938 moveto +P$1k +1349.125 478.4531 moveto +P$1b +1349.125 475.8906 moveto +P$1c +1354.6719 479.2031 moveto +P$1l +1354.6719 478.2969 moveto +P$1m +1365.5938 481.0469 moveto +P$1d +1366.9688 476.2656 moveto +P$1p +1380.75 481.4688 moveto +P$1r +1379.6719 481.1406 moveto +P$1s +1388.2344 479.7188 moveto +P$1a +1395.1719 484.0313 moveto +P$1e +1398.8438 481.7344 moveto +P$1f +1402.125 475.8906 moveto +P$1g +1408.1094 481.7188 moveto +P$1i +1410.2656 481.2656 moveto +P$1j +1414.2031 476.5938 moveto +P$1k +1423.75 481.4688 moveto +P$1r +1422.6719 481.1406 moveto +P$1s +1426.1719 476.2656 moveto +P$2m +1439.1094 481.7188 moveto +P$1i +1441.2656 481.2656 moveto +P$1j +1445.1719 484.0313 moveto +P$1e +1448.8438 481.7344 moveto +P$1f +1453.1719 484.0313 moveto +P$1e +1456.8438 481.7344 moveto +P$1f +1460.125 478.4531 moveto +P$1b +1460.125 475.8906 moveto +P$1c +1468.5938 481.0469 moveto +P$1d +1475.4531 481.6563 moveto +P$2g +1476.5313 484.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1292 496 moveto +188 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1292 504 moveto +188 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +77 48 2748.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +76 47 2749.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +75 46 2749.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +74 45 2750.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +73 44 2750.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +72 43 2751.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +71 42 2751.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +70 41 2752.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +69 40 2752.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +77 48 2744.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +77 48 2744.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2759.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2759.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2762.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2780.1719 352.5469 moveto +P$1z +2788.5 357.4688 moveto +P$1r +2787.4219 357.1406 moveto +P$1s +2794.6875 355.4531 moveto +P$1y +2795.1094 354.4531 moveto +P$2f +2801.875 354.4531 moveto +P$1b +2801.875 351.8906 moveto +P$1c +2809.6094 354.7031 moveto +P$1h +2817.5 357.4688 moveto +P$1r +2816.4219 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2745.75 372 moveto +75 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2745.75 380 moveto +75 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +104 48 1859 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +103 47 1859.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +102 46 1860 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +101 45 1860.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +100 44 1861 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +99 43 1861.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +98 42 1862 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +97 41 1862.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +96 40 1863 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +104 48 1855 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +104 48 1855 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1870 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1870 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1872.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1890.4219 600.5469 moveto +P$1z +1894.2031 600.5938 moveto +P$1k +1901.1094 605.7188 moveto +P$1i +1903.2656 605.2656 moveto +P$1j +1911.5938 605.0469 moveto +P$1d +1918.4531 603.4531 moveto +P$18 +1914.7813 605.7344 moveto +P$19 +1925.1094 605.7188 moveto +P$1i +1927.2656 605.2656 moveto +P$1j +1930.125 599.8906 moveto +P$1g +1935.6719 603.2031 moveto +P$1l +1935.6719 602.2969 moveto +P$1m +1946.5938 605.0469 moveto +P$1d +1954.75 605.4688 moveto +P$1r +1953.6719 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1856 620 moveto +102 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1856 628 moveto +102 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +183 48 2324.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +182 47 2325.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +181 46 2325.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +180 45 2326.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +179 44 2326.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +178 43 2327.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +177 42 2327.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +176 41 2328.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +175 40 2328.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +183 48 2320.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +183 48 2320.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2335.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2335.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2338.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2349.7188 352.2656 moveto +P$1p +2360.8594 357.7188 moveto +P$1i +2363.0156 357.2656 moveto +P$1j +2370.0625 354.6406 moveto +P$1o +2372.8438 351.8906 moveto +P$2n +2379.9219 352.2656 moveto +P$26 +2387.1094 354.4531 moveto +P$2f +2399.5 357.4688 moveto +P$1r +2398.4219 357.1406 moveto +P$1s +2407.3438 357.0469 moveto +P$1d +2410.9531 352.5938 moveto +P$1k +2414.7969 352.2656 moveto +P$24 +2428.0781 356.9063 moveto +P$2a +2425.1094 353.2344 moveto +P$2b +2431.9219 352.2656 moveto +P$2j +2443.8906 359.7656 moveto +P$25 +2452.5 357.4688 moveto +P$1r +2451.4219 357.1406 moveto +P$1s +2460.3438 357.0469 moveto +P$1d +2468.5 357.4688 moveto +P$1r +2467.4219 357.1406 moveto +P$1s +2474.6875 355.4531 moveto +P$1y +2478.8594 357.7188 moveto +P$1i +2481.0156 357.2656 moveto +P$1j +2484.9531 352.5938 moveto +P$1k +2491.4219 355.2031 moveto +P$1l +2491.4219 354.2969 moveto +P$1m +2500.6875 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2321.75 372 moveto +181 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2321.75 380 moveto +181 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +138 48 2168 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +137 47 2168.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +136 46 2169 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +135 45 2169.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +134 44 2170 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +133 43 2170.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +132 42 2171 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +131 41 2171.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +130 40 2172 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +138 48 2164 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +138 48 2164 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2179 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2179 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2181.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2192.9688 600.2656 moveto +P$1p +2206.75 605.4688 moveto +P$1r +2205.6719 605.1406 moveto +P$1s +2214.2344 603.7188 moveto +P$1a +2221.1719 608.0313 moveto +P$1e +2224.8438 605.7344 moveto +P$1f +2228.125 599.8906 moveto +P$1g +2234.1094 605.7188 moveto +P$1i +2236.2656 605.2656 moveto +P$1j +2240.2031 600.5938 moveto +P$1k +2249.75 605.4688 moveto +P$1r +2248.6719 605.1406 moveto +P$1s +2258.7344 600.9375 moveto +P$14 +2262.6719 603.2031 moveto +P$1l +2262.6719 602.2969 moveto +P$1m +2273.5938 605.0469 moveto +P$1d +2277.2031 600.5938 moveto +P$1k +2286.75 605.4688 moveto +P$1r +2285.6719 605.1406 moveto +P$1s +2294.5938 602.4531 moveto +P$2c +2296.2031 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2165 620 moveto +136 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2165 628 moveto +136 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +90 48 2248 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +89 47 2248.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +88 46 2249 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +87 45 2249.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +86 44 2250 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +85 43 2250.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +84 42 2251 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +83 41 2251.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +82 40 2252 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +90 48 2244 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +90 48 2244 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2259 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2259 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2261.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2272.9688 864.2656 moveto +P$1p +2286.75 869.4688 moveto +P$1r +2285.6719 869.1406 moveto +P$1s +2294.2344 867.7188 moveto +P$1a +2301.1719 872.0313 moveto +P$1e +2304.8438 869.7344 moveto +P$1f +2308.125 863.8906 moveto +P$1g +2314.1094 869.7188 moveto +P$1i +2316.2656 869.2656 moveto +P$1j +2320.2031 864.5938 moveto +P$1k +2329.75 869.4688 moveto +P$1r +2328.6719 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2245 884 moveto +88 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2245 892 moveto +88 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +93 48 3603.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +92 47 3604.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +91 46 3604.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +90 45 3605.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +89 44 3605.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +88 43 3606.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +87 42 3606.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +86 41 3607.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +85 40 3607.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +93 48 3599.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +93 48 3599.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3614.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3614.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3617.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3628.7188 724.2656 moveto +P$1p +3642.5 729.4688 moveto +P$1r +3641.4219 729.1406 moveto +P$1s +3650.3438 726.4531 moveto +P$2c +3651.9531 724.5938 moveto +P$1k +3658.8594 725.4375 moveto +P$16 +3658.1875 724.2656 moveto +P$17 +3668.0625 726.6406 moveto +P$1o +3675.0625 726.6406 moveto +P$1o +3683.5 729.4688 moveto +P$1r +3682.4219 729.1406 moveto +P$1s +3686.9531 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3600.75 744 moveto +91 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3600.75 752 moveto +91 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +119 48 2352.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +118 47 2353.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +117 46 2353.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +116 45 2354.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +115 44 2354.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +114 43 2355.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +113 42 2355.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +112 41 2356.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +111 40 2356.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +119 48 2348.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +119 48 2348.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2363.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2363.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2366.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2377.7188 600.2656 moveto +P$1p +2391.5 605.4688 moveto +P$1r +2390.4219 605.1406 moveto +P$1s +2399.3438 602.4531 moveto +P$2c +2400.9531 600.5938 moveto +P$1k +2404.9219 600.2656 moveto +P$2m +2414.875 602.4531 moveto +P$1b +2414.875 599.8906 moveto +P$1c +2422.9844 603.7188 moveto +P$1a +2434.5 605.4688 moveto +P$1r +2433.4219 605.1406 moveto +P$1s +2435.7188 600.2656 moveto +P$1p +2446.6094 609.625 moveto +P$1q +2450.9219 608.0313 moveto +P$1e +2454.5938 605.7344 moveto +P$1f +2463.5 605.4688 moveto +P$1r +2462.4219 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2349.75 620 moveto +117 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2349.75 628 moveto +117 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +136 48 2513 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +135 47 2513.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +134 46 2514 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +133 45 2514.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +132 44 2515 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +131 43 2515.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +130 42 2516 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +129 41 2516.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +128 40 2517 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +136 48 2509 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +136 48 2509 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +2524 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2524 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2526.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +2539.0469 600.2656 moveto +P$24 +2549.1719 608.0313 moveto +P$1e +2552.8438 605.7344 moveto +P$1f +2560.4531 605.6563 moveto +P$2g +2561.5313 608.2031 moveto +P$2h +2567.9375 603.4531 moveto +P$1y +2572.1094 605.7188 moveto +P$1i +2574.2656 605.2656 moveto +P$1j +2581.4531 603.4531 moveto +P$18 +2577.7813 605.7344 moveto +P$19 +2590.75 605.4688 moveto +P$1r +2589.6719 605.1406 moveto +P$1s +2594.3594 601.2344 moveto +P$27 +2593.1719 600.2656 moveto +P$28 +2604.9375 603.4531 moveto +P$1y +2608.6719 603.2031 moveto +P$1l +2608.6719 602.2969 moveto +P$1m +2618.8594 602.7031 moveto +P$1h +2626.75 605.4688 moveto +P$1r +2625.6719 605.1406 moveto +P$1s +2633.3125 602.6406 moveto +P$1o +2640.3125 602.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2510 620 moveto +134 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2510 628 moveto +134 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +186 48 1818.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +185 47 1819 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +184 46 1819.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +183 45 1820 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +182 44 1820.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +181 43 1821 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +180 42 1821.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +179 41 1822 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +178 40 1822.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +186 48 1814.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +186 48 1814.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1829.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1829.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1832.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1844.5469 724.2656 moveto +P$24 +1857.8125 726.6406 moveto +P$1o +1866.25 729.4688 moveto +P$1r +1865.1719 729.1406 moveto +P$1s +1872.4375 727.4531 moveto +P$1y +1874.8594 725.2344 moveto +P$2p +1873.6719 724.2656 moveto +P$2q +1888.25 729.4688 moveto +P$1r +1887.1719 729.1406 moveto +P$1s +1893.9531 723.8906 moveto +P$2o +1894.625 726.4531 moveto +P$1b +1894.625 723.8906 moveto +P$1c +1903.0938 729.0469 moveto +P$1d +1911.25 729.4688 moveto +P$1r +1910.1719 729.1406 moveto +P$1s +1917.9531 727.4531 moveto +P$18 +1914.2813 729.7344 moveto +P$19 +1928.2344 724.9375 moveto +P$14 +1932.1719 727.2031 moveto +P$1l +1932.1719 726.2969 moveto +P$1m +1943.0938 729.0469 moveto +P$1d +1946.7031 724.5938 moveto +P$1k +1956.25 729.4688 moveto +P$1r +1955.1719 729.1406 moveto +P$1s +1964.0938 729.0469 moveto +P$1d +1967.7031 724.5938 moveto +P$1k +1971.6719 724.2656 moveto +P$2i +1975.7031 724.5938 moveto +P$1k +1985.25 729.4688 moveto +P$1r +1984.1719 729.1406 moveto +P$1s +1992.7344 727.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1815.5 744 moveto +184 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1815.5 752 moveto +184 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +162 48 3067 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +161 47 3067.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +160 46 3068 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +159 45 3068.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +158 44 3069 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +157 43 3069.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +156 42 3070 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +155 41 3070.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +154 40 3071 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +162 48 3063 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +162 48 3063 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3078 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3078 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3080.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3093.0469 600.2656 moveto +P$24 +3106.3125 602.6406 moveto +P$1o +3114.75 605.4688 moveto +P$1r +3113.6719 605.1406 moveto +P$1s +3120.9375 603.4531 moveto +P$1y +3122.1719 600.2656 moveto +P$1n +3133.6719 603.2031 moveto +P$1l +3133.6719 602.2969 moveto +P$1m +3144.2344 603.7188 moveto +P$1a +3155.75 605.4688 moveto +P$1r +3154.6719 605.1406 moveto +P$1s +3158.1719 600.2656 moveto +P$2s +3167.6719 603.2031 moveto +P$1l +3167.6719 602.2969 moveto +P$1m +3173.125 599.8906 moveto +P$1g +3180.4531 603.4531 moveto +P$18 +3176.7813 605.7344 moveto +P$19 +3189.75 605.4688 moveto +P$1r +3188.6719 605.1406 moveto +P$1s +3195.9375 603.4531 moveto +P$1y +3197.1719 600.2656 moveto +P$2m +3210.1094 605.7188 moveto +P$1i +3212.2656 605.2656 moveto +P$1j +3216.1719 608.0313 moveto +P$1e +3219.8438 605.7344 moveto +P$1f +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3064 620 moveto +160 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3064 628 moveto +160 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +88 48 1656.5 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +87 47 1657 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +86 46 1657.5 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +85 45 1658 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +84 44 1658.5 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +83 43 1659 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +82 42 1659.5 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +81 41 1660 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +80 40 1660.5 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +88 48 1652.5 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +88 48 1652.5 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +1667.5 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1667.5 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1670.4688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +1689.2344 600.9375 moveto +P$14 +1693.6094 605.7188 moveto +P$1i +1695.7656 605.2656 moveto +P$1j +1699.7031 600.5938 moveto +P$1k +1709.25 605.4688 moveto +P$1r +1708.1719 605.1406 moveto +P$1s +1715.9531 605.6563 moveto +P$2g +1717.0313 608.2031 moveto +P$2h +1722.1719 603.2031 moveto +P$1l +1722.1719 602.2969 moveto +P$1m +1731.4375 603.4531 moveto +P$1y +1735.3594 609.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1653.5 620 moveto +86 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1653.5 628 moveto +86 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +96 48 3153 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +95 47 3153.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +94 46 3154 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +93 45 3154.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +92 44 3155 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +91 43 3155.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +90 42 3156 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +89 41 3156.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +88 40 3157 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +96 48 3149 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +96 48 3149 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3164 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3164 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3166.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3182.1094 477.4375 moveto +P$16 +3181.4375 476.2656 moveto +P$17 +3193.7344 476.9375 moveto +P$14 +3200.4219 476.5469 moveto +P$1z +3206.7344 477.0625 moveto +P$20 +3206.7344 476.1094 moveto +P$21 +3216.8438 481.7344 moveto +P$1f +3213.1719 479.4531 moveto +P$22 +3220.125 478.4531 moveto +P$23 +3220.125 475.8906 moveto +P$1c +3228.75 481.4688 moveto +P$1r +3227.6719 481.1406 moveto +P$1s +3235.8594 478.7031 moveto +P$1h +3239.2031 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3150 496 moveto +94 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3150 504 moveto +94 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +61 48 3120.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +60 47 3121.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +59 46 3121.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +58 45 3122.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +57 44 3122.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +56 43 3123.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +55 42 3123.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +54 41 3124.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +53 40 3124.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +61 48 3116.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +61 48 3116.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3131.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3131.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3134.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3146.7969 724.2656 moveto +P$24 +3160.0625 726.6406 moveto +P$1o +3168.5 729.4688 moveto +P$1r +3167.4219 729.1406 moveto +P$1s +3174.6875 727.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3117.75 744 moveto +59 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3117.75 752 moveto +59 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +90 48 3295 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +89 47 3295.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +88 46 3296 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +87 45 3296.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +86 44 3297 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +85 43 3297.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +84 42 3298 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +83 41 3298.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +82 40 3299 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +90 48 3291 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +90 48 3291 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3306 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3306 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3308.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3319.9688 352.2656 moveto +P$1p +3333.75 357.4688 moveto +P$1r +3332.6719 357.1406 moveto +P$1s +3341.5938 354.4531 moveto +P$2c +3343.2031 352.5938 moveto +P$1k +3348.3594 353.2344 moveto +P$27 +3347.1719 352.2656 moveto +P$28 +3358.1094 357.7188 moveto +P$1i +3360.2656 357.2656 moveto +P$1j +3367.4531 357.6563 moveto +P$2g +3368.5313 360.2031 moveto +P$2h +3376.75 357.4688 moveto +P$1r +3375.6719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3292 372 moveto +88 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3292 380 moveto +88 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +126 48 3420 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +125 47 3420.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +124 46 3421 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +123 45 3421.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +122 44 3422 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +121 43 3422.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +120 42 3423 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +119 41 3423.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +118 40 3424 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +126 48 3416 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +126 48 3416 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3431 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3431 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3433.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3446.1719 352.2656 moveto +P$2s +3453.125 354.4531 moveto +P$1b +3453.125 351.8906 moveto +P$1c +3456.125 351.8906 moveto +P$1g +3464.75 357.4688 moveto +P$1r +3463.6719 357.1406 moveto +P$1s +3470.1094 353.4375 moveto +P$16 +3469.4375 352.2656 moveto +P$17 +3476.2031 352.5938 moveto +P$1k +3481.2031 352.5938 moveto +P$1k +3488.1094 357.7188 moveto +P$1i +3490.2656 357.2656 moveto +P$1j +3497.8594 354.7031 moveto +P$1h +3505.5938 357.0469 moveto +P$2d +3513.2344 355.7188 moveto +P$1a +3524.75 357.4688 moveto +P$1r +3523.6719 357.1406 moveto +P$1s +3532.5938 357.0469 moveto +P$1d +3536.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3417 372 moveto +124 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3417 380 moveto +124 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +143 48 3581.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +142 47 3582.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +141 46 3582.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +140 45 3583.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +139 44 3583.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +138 43 3584.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +137 42 3584.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +136 41 3585.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +135 40 3585.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +143 48 3577.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +143 48 3577.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3592.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3592.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3595.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3607.9219 352.2656 moveto +P$2i +3615.9844 355.7188 moveto +P$1a +3624.8594 357.7188 moveto +P$1i +3627.0156 357.2656 moveto +P$1j +3634.2031 357.6563 moveto +P$2g +3635.2813 360.2031 moveto +P$2h +3643.5 357.4688 moveto +P$1r +3642.4219 357.1406 moveto +P$1s +3648.8594 353.4375 moveto +P$16 +3648.1875 352.2656 moveto +P$17 +3654.9531 352.5938 moveto +P$1k +3659.9531 352.5938 moveto +P$1k +3666.8594 357.7188 moveto +P$1i +3669.0156 357.2656 moveto +P$1j +3676.6094 354.7031 moveto +P$1h +3684.3438 357.0469 moveto +P$2d +3691.9844 355.7188 moveto +P$1a +3703.5 357.4688 moveto +P$1r +3702.4219 357.1406 moveto +P$1s +3711.3438 357.0469 moveto +P$1d +3714.9531 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3578.75 372 moveto +141 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3578.75 380 moveto +141 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +109 48 3759.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +108 47 3760.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +107 46 3760.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +106 45 3761.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +105 44 3761.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +104 43 3762.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +103 42 3762.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +102 41 3763.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +101 40 3763.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +109 48 3755.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +109 48 3755.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3770.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3770.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3773.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3792.4844 352.9375 moveto +P$14 +3796.4219 355.2031 moveto +P$1l +3796.4219 354.2969 moveto +P$1m +3807.3438 357.0469 moveto +P$1d +3810.9531 352.5938 moveto +P$1k +3820.5 357.4688 moveto +P$1r +3819.4219 357.1406 moveto +P$1s +3828.3438 357.0469 moveto +P$1d +3831.9531 352.5938 moveto +P$1k +3835.9219 352.2656 moveto +P$2i +3839.9531 352.5938 moveto +P$1k +3848.9844 355.7188 moveto +P$1a +3860.5 357.4688 moveto +P$1r +3859.4219 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3756.75 372 moveto +107 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3756.75 380 moveto +107 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +140 48 111 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +139 47 111.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +138 46 112 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +137 45 112.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +136 44 113 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +135 43 113.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +134 42 114 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +133 41 114.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +132 40 115 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +140 48 107 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +140 48 107 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +122 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +122 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +124.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +142.4219 476.5469 moveto +P$1z +145.125 478.4531 moveto +P$1b +145.125 475.8906 moveto +P$1c +149.2031 476.5938 moveto +P$1k +158.75 481.4688 moveto +P$1r +157.6719 481.1406 moveto +P$1s +162.3594 477.2344 moveto +P$27 +161.1719 476.2656 moveto +P$28 +172.9375 479.4531 moveto +P$1y +176.6719 479.2031 moveto +P$1l +176.6719 478.2969 moveto +P$1m +187.5938 478.4531 moveto +P$2c +190.8594 485.625 moveto +P$1q +195.3594 477.2344 moveto +P$27 +194.1719 476.2656 moveto +P$28 +205.9375 479.4531 moveto +P$1y +209.6719 479.2031 moveto +P$1l +209.6719 478.2969 moveto +P$1m +214.3594 478.4531 moveto +P$2f +221.125 478.4531 moveto +P$1b +221.125 475.8906 moveto +P$1c +228.4531 479.4531 moveto +P$18 +224.7813 481.7344 moveto +P$19 +237.75 481.4688 moveto +P$1r +236.6719 481.1406 moveto +P$1s +243.9375 479.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +108 496 moveto +138 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +108 504 moveto +138 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +88 48 19378.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +87 47 19379 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +86 46 19379.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +85 45 19380 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +84 44 19380.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +83 43 19381 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +82 42 19381.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +81 41 19382 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +80 40 19382.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +88 48 19374.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +88 48 19374.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19389.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19389.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19392.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19404.6719 352.2656 moveto +P$1n +19414.7031 352.5938 moveto +P$1k +19419.7031 352.5938 moveto +P$1k +19424.6719 360.0313 moveto +P$1e +19428.3438 357.7344 moveto +P$1f +19434.6094 353.4375 moveto +P$16 +19433.9375 352.2656 moveto +P$17 +19439.5156 358.4219 moveto +P$1w +19442.2344 354.2969 moveto +P$1x +19448.7031 352.5938 moveto +P$1k +19458.0938 357.0469 moveto +P$2d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19375.5 372 moveto +86 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19375.5 380 moveto +86 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +80 48 19263 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +79 47 19263.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +78 46 19264 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +77 45 19264.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +76 44 19265 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +75 43 19265.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +74 42 19266 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +73 41 19266.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +72 40 19267 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +80 48 19259 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +80 48 19259 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19274 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19274 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19276.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19289.1719 352.2656 moveto +P$29 +19300.6719 355.2031 moveto +P$1l +19300.6719 354.2969 moveto +P$1m +19306.0156 358.4219 moveto +P$1w +19308.7344 354.2969 moveto +P$1x +19319.5938 357.0469 moveto +P$1d +19326.8594 354.7031 moveto +P$1h +19334.75 357.4688 moveto +P$1r +19333.6719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19260 372 moveto +78 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19260 380 moveto +78 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +94 48 19007 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +93 47 19007.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +92 46 19008 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +91 45 19008.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +90 44 19009 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +89 43 19009.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +88 42 19010 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +87 41 19010.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +86 40 19011 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +94 48 19003 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +94 48 19003 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19018 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19018 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19020.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19033.0469 352.2656 moveto +P$24 +19046.3125 354.6406 moveto +P$1o +19054.75 357.4688 moveto +P$1r +19053.6719 357.1406 moveto +P$1s +19060.9375 355.4531 moveto +P$1y +19062.1719 352.2656 moveto +P$2j +19070.6719 355.2031 moveto +P$1l +19070.6719 354.2969 moveto +P$1m +19080.4531 357.6563 moveto +P$2g +19081.5313 360.2031 moveto +P$2h +19084.125 354.4531 moveto +P$1b +19084.125 351.8906 moveto +P$1c +19092.5938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19004 372 moveto +92 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19004 380 moveto +92 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +92 48 19136 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +91 47 19136.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +90 46 19137 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +89 45 19137.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +88 44 19138 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +87 43 19138.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +86 42 19139 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +85 41 19139.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +84 40 19140 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +92 48 19132 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +92 48 19132 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19147 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19147 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19149.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19162.1719 352.2656 moveto +P$1n +19169.9688 352.2656 moveto +P$1p +19176.9688 352.2656 moveto +P$1p +19186.3594 353.2344 moveto +P$27 +19185.1719 352.2656 moveto +P$28 +19196.1094 353.4375 moveto +P$16 +19195.4375 352.2656 moveto +P$17 +19201.0156 358.4219 moveto +P$1w +19203.7344 354.2969 moveto +P$1x +19210.2031 352.5938 moveto +P$1k +19219.5938 357.0469 moveto +P$2d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19133 372 moveto +90 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19133 380 moveto +90 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +159 48 13682.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +158 47 13683.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +157 46 13683.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +156 45 13684.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +155 44 13684.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +154 43 13685.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +153 42 13685.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +152 41 13686.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +151 40 13686.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +159 48 13678.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +159 48 13678.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13693.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13693.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13696.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13711.2375 361.0156 moveto +P$2t +13722.55 357.4688 moveto +P$1r +13721.4719 357.1406 moveto +P$1s +13728.7375 355.4531 moveto +P$1y +13734.1125 354.6406 moveto +P$1o +13736.925 354.4531 moveto +P$1b +13736.925 351.8906 moveto +P$1c +13742.4719 355.2031 moveto +P$1l +13742.4719 354.2969 moveto +P$1m +13753.3938 357.0469 moveto +P$1d +13761.55 357.4688 moveto +P$1r +13760.4719 357.1406 moveto +P$1s +13768.2531 355.4531 moveto +P$18 +13764.5813 357.7344 moveto +P$19 +13774.9094 353.4375 moveto +P$16 +13774.2375 352.2656 moveto +P$17 +13786.5344 352.9375 moveto +P$14 +13793.2219 352.5469 moveto +P$1z +13799.5344 353.0625 moveto +P$20 +13799.5344 352.1094 moveto +P$21 +13809.6438 357.7344 moveto +P$1f +13805.9719 355.4531 moveto +P$22 +13812.925 354.4531 moveto +P$23 +13812.925 351.8906 moveto +P$1c +13821.55 357.4688 moveto +P$1r +13820.4719 357.1406 moveto +P$1s +13828.6594 354.7031 moveto +P$1h +13832.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13679.8 372 moveto +157 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13679.8 380 moveto +157 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +121 48 13767.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +120 47 13768.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +119 46 13768.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +118 45 13769.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +117 44 13769.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +116 43 13770.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +115 42 13770.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +114 41 13771.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +113 40 13771.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +121 48 13763.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +121 48 13763.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13778.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13778.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13781.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13795.1594 604.8438 moveto +P$1t +13795.1594 601.2344 moveto +P$1u +13793.9719 600.2656 moveto +P$1v +13801.925 599.8906 moveto +P$1g +13807.4719 603.2031 moveto +P$1l +13807.4719 602.2969 moveto +P$1m +13817.6438 605.7344 moveto +P$1f +13813.9719 603.4531 moveto +P$22 +13824.5344 601.0625 moveto +P$20 +13824.5344 600.1094 moveto +P$21 +13830.9719 608.0313 moveto +P$1e +13834.6438 605.7344 moveto +P$1f +13843.55 605.4688 moveto +P$1r +13842.4719 605.1406 moveto +P$1s +13849.7375 603.4531 moveto +P$1y +13853.9094 605.7188 moveto +P$1i +13856.0656 605.2656 moveto +P$1j +13860.0031 600.5938 moveto +P$1k +13863.925 602.4531 moveto +P$1b +13863.925 599.8906 moveto +P$1c +13869.4719 603.2031 moveto +P$1l +13869.4719 602.2969 moveto +P$1m +13880.3938 605.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13764.8 620 moveto +119 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13764.8 628 moveto +119 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +121 48 13923.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +120 47 13924.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +119 46 13924.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +118 45 13925.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +117 44 13925.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +116 43 13926.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +115 42 13926.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +114 41 13927.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +113 40 13927.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +121 48 13919.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +121 48 13919.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13934.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13934.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13937.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13956.5344 600.9375 moveto +P$14 +13957.925 599.8906 moveto +P$1g +13963.4719 603.2031 moveto +P$1l +13963.4719 602.2969 moveto +P$1m +13973.6438 605.7344 moveto +P$1f +13969.9719 603.4531 moveto +P$22 +13980.5344 601.0625 moveto +P$20 +13980.5344 600.1094 moveto +P$21 +13986.9719 608.0313 moveto +P$1e +13990.6438 605.7344 moveto +P$1f +13999.55 605.4688 moveto +P$1r +13998.4719 605.1406 moveto +P$1s +14005.7375 603.4531 moveto +P$1y +14009.9094 605.7188 moveto +P$1i +14012.0656 605.2656 moveto +P$1j +14016.0031 600.5938 moveto +P$1k +14019.925 602.4531 moveto +P$1b +14019.925 599.8906 moveto +P$1c +14025.4719 603.2031 moveto +P$1l +14025.4719 602.2969 moveto +P$1m +14036.3938 605.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13920.8 620 moveto +119 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13920.8 628 moveto +119 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +150 48 14008.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +149 47 14009 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +148 46 14009.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +147 45 14010 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +146 44 14010.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +145 43 14011 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +144 42 14011.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +143 41 14012 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +142 40 14012.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +150 48 14004.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +150 48 14004.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14019.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14019.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14022.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14035.8594 353.2344 moveto +P$2p +14034.6719 352.2656 moveto +P$2q +14046.6094 357.7188 moveto +P$1i +14048.7656 357.2656 moveto +P$1j +14052.7031 352.5938 moveto +P$1k +14059.6094 357.7188 moveto +P$1i +14061.7656 357.2656 moveto +P$1j +14068.2344 353.0625 moveto +P$20 +14068.2344 352.1094 moveto +P$21 +14078.3438 357.7344 moveto +P$1f +14074.6719 355.4531 moveto +P$22 +14081.625 354.4531 moveto +P$23 +14081.625 351.8906 moveto +P$1c +14090.25 357.4688 moveto +P$1r +14089.1719 357.1406 moveto +P$1s +14097.3594 354.7031 moveto +P$1h +14100.7031 352.5938 moveto +P$1k +14111.2344 352.9375 moveto +P$14 +14118.0938 357.0469 moveto +P$2d +14123.6094 357.7188 moveto +P$1i +14125.7656 357.2656 moveto +P$1j +14134.0938 357.0469 moveto +P$1d +14140.9531 357.6563 moveto +P$2g +14142.0313 360.2031 moveto +P$2h +14150.25 357.4688 moveto +P$1r +14149.1719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14005.5 372 moveto +148 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14005.5 380 moveto +148 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +96 48 13877 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +95 47 13877.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +94 46 13878 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +93 45 13878.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +92 44 13879 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +91 43 13879.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +90 42 13880 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +89 41 13880.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +88 40 13881 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +96 48 13873 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +96 48 13873 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13888 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13888 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13890.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13903.1719 352.2656 moveto +P$26 +13910.3594 354.4531 moveto +P$2f +13922.75 357.4688 moveto +P$1r +13921.6719 357.1406 moveto +P$1s +13930.5938 357.0469 moveto +P$1d +13934.2031 352.5938 moveto +P$1k +13936.9688 352.2656 moveto +P$1p +13947.8594 361.625 moveto +P$1q +13952.1719 360.0313 moveto +P$1e +13955.8438 357.7344 moveto +P$1f +13964.75 357.4688 moveto +P$1r +13963.6719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13874 372 moveto +94 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13874 380 moveto +94 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +142 48 13590 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +141 47 13590.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +140 46 13591 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +139 45 13591.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +138 44 13592 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +137 43 13592.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +136 42 13593 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +135 41 13593.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +134 40 13594 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +142 48 13586 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +142 48 13586 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13601 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13601 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13603.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13622.1406 607.7656 moveto +P$25 +13630.75 605.4688 moveto +P$1r +13629.6719 605.1406 moveto +P$1s +13638.5938 605.0469 moveto +P$1d +13646.75 605.4688 moveto +P$1r +13645.6719 605.1406 moveto +P$1s +13652.9375 603.4531 moveto +P$1y +13654.125 602.4531 moveto +P$1b +13654.125 599.8906 moveto +P$1c +13661.8594 602.7031 moveto +P$1h +13667.7344 601.0625 moveto +P$20 +13667.7344 600.1094 moveto +P$21 +13674.1719 608.0313 moveto +P$1e +13677.8438 605.7344 moveto +P$1f +13686.75 605.4688 moveto +P$1r +13685.6719 605.1406 moveto +P$1s +13692.9375 603.4531 moveto +P$1y +13697.1094 605.7188 moveto +P$1i +13699.2656 605.2656 moveto +P$1j +13703.2031 600.5938 moveto +P$1k +13707.125 602.4531 moveto +P$1b +13707.125 599.8906 moveto +P$1c +13712.6719 603.2031 moveto +P$1l +13712.6719 602.2969 moveto +P$1m +13723.5938 605.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13587 620 moveto +140 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13587 628 moveto +140 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +90 48 13557 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +89 47 13557.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +88 46 13558 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +87 45 13558.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +86 44 13559 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +85 43 13559.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +84 42 13560 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +83 41 13560.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +82 40 13561 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +90 48 13553 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +90 48 13553 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13568 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13568 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13570.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13583.1719 352.2656 moveto +P$2u +13589.1094 357.7188 moveto +P$1i +13591.2656 357.2656 moveto +P$1j +13593.3594 354.4531 moveto +P$2f +13603.1094 357.7188 moveto +P$1i +13605.2656 357.2656 moveto +P$1j +13614.7344 352.9375 moveto +P$14 +13616.125 351.8906 moveto +P$1g +13622.1094 357.7188 moveto +P$1i +13624.2656 357.2656 moveto +P$1j +13631.3125 354.6406 moveto +P$1o +13638.3125 354.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13554 372 moveto +88 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13554 380 moveto +88 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +94 48 13829 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +93 47 13829.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +92 46 13830 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +91 45 13830.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +90 44 13831 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +89 43 13831.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +88 42 13832 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +87 41 13832.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +86 40 13833 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +94 48 13825 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +94 48 13825 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +13840 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13840 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13842.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +13858.7344 477.0625 moveto +P$20 +13858.7344 476.1094 moveto +P$21 +13865.1719 484.0313 moveto +P$1e +13868.8438 481.7344 moveto +P$1f +13877.75 481.4688 moveto +P$1r +13876.6719 481.1406 moveto +P$1s +13883.9375 479.4531 moveto +P$1y +13888.1094 481.7188 moveto +P$1i +13890.2656 481.2656 moveto +P$1j +13894.2031 476.5938 moveto +P$1k +13898.125 478.4531 moveto +P$1b +13898.125 475.8906 moveto +P$1c +13903.6719 479.2031 moveto +P$1l +13903.6719 478.2969 moveto +P$1m +13914.5938 481.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13826 496 moveto +92 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13826 504 moveto +92 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +55 48 14079.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +54 47 14080.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +53 46 14080.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +52 45 14081.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +51 44 14081.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +50 43 14082.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +49 42 14082.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +48 41 14083.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +47 40 14083.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +55 48 14075.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +55 48 14075.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14090.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14090.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14093.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14104.7688 600.2656 moveto +P$1p +14115.9094 605.7188 moveto +P$1i +14118.0656 605.2656 moveto +P$1j +14125.2531 605.6563 moveto +P$2g +14126.3313 608.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14076.8 620 moveto +53 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14076.8 628 moveto +53 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +53 48 14056.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +52 47 14057.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +51 46 14057.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +50 45 14058.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +49 44 14058.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +48 43 14059.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +47 42 14059.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +46 41 14060.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +45 40 14060.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +53 48 14052.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +53 48 14052.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14067.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14067.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14070.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14081.7688 476.2656 moveto +P$1p +14095.3938 478.4531 moveto +P$2c +14101.3938 481.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14053.8 496 moveto +51 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14053.8 504 moveto +51 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +90 48 31229 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +89 47 31229.5 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +88 46 31230 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +87 45 31230.5 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +86 44 31231 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +85 43 31231.5 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +84 42 31232 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +83 41 31232.5 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +82 40 31233 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +90 48 31225 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +90 48 31225 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +31240 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31240 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31242.9688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31255.0469 228.2656 moveto +P$24 +31268.3125 230.6406 moveto +P$1o +31276.75 233.4688 moveto +P$1r +31275.6719 233.1406 moveto +P$1s +31282.9375 231.4531 moveto +P$1y +31282.9688 228.2656 moveto +P$1p +31294.1094 233.7188 moveto +P$1i +31296.2656 233.2656 moveto +P$1j +31303.3125 230.6406 moveto +P$1o +31306.0938 227.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31226 248 moveto +88 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31226 256 moveto +88 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +145 48 31232.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +144 47 31233.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +143 46 31233.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +142 45 31234.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +141 44 31234.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +140 43 31235.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +139 42 31235.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +138 41 31236.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +137 40 31236.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +145 48 31228.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +145 48 31228.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +31243.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31243.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31246.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31258.2063 352.2656 moveto +P$15 +31272.4719 355.2031 moveto +P$1l +31272.4719 354.2969 moveto +P$1m +31281.7375 355.4531 moveto +P$1y +31282.8938 351.8906 moveto +P$2n +31293.2531 351.8906 moveto +P$2o +31293.925 351.8906 moveto +P$1g +31299.4719 355.2031 moveto +P$1l +31299.4719 354.2969 moveto +P$1m +31304.3 354.4531 moveto +P$2r +31312.7688 352.2656 moveto +P$1p +31326.55 357.4688 moveto +P$1r +31325.4719 357.1406 moveto +P$1s +31334.0344 355.7188 moveto +P$1a +31340.9719 360.0313 moveto +P$1e +31344.6438 357.7344 moveto +P$1f +31347.925 351.8906 moveto +P$1g +31353.9094 357.7188 moveto +P$1i +31356.0656 357.2656 moveto +P$1j +31360.0031 352.5938 moveto +P$1k +31369.55 357.4688 moveto +P$1r +31368.4719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31229.8 372 moveto +143 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31229.8 380 moveto +143 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +61 48 31367.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +60 47 31368.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +59 46 31368.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +58 45 31369.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +57 44 31369.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +56 43 31370.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +55 42 31370.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +54 41 31371.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +53 40 31371.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +61 48 31363.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +61 48 31363.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +31378.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31378.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31381.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31392.7688 104.2656 moveto +P$1p +31403.9094 109.7188 moveto +P$1i +31406.0656 109.2656 moveto +P$1j +31413.1125 106.6406 moveto +P$1o +31415.8938 103.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31364.8 124 moveto +59 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31364.8 132 moveto +59 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +120 48 31477.5 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +119 47 31478 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +118 46 31478.5 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +117 45 31479 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +116 44 31479.5 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +115 43 31480 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +114 42 31480.5 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +113 41 31481 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +112 40 31481.5 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +120 48 31473.5 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +120 48 31473.5 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +31488.5 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31488.5 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31491.4688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31502.4688 228.2656 moveto +P$1p +31513.6094 233.7188 moveto +P$1i +31515.7656 233.2656 moveto +P$1j +31522.8125 230.6406 moveto +P$1o +31525.5938 227.8906 moveto +P$2n +31539.2344 228.9375 moveto +P$14 +31543.1719 231.2031 moveto +P$1l +31543.1719 230.2969 moveto +P$1m +31553.7344 231.7188 moveto +P$1a +31564.7344 231.7188 moveto +P$1a +31576.25 233.4688 moveto +P$1r +31575.1719 233.1406 moveto +P$1s +31584.0938 233.0469 moveto +P$1d +31587.7031 228.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31474.5 248 moveto +118 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31474.5 256 moveto +118 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +87 48 31354.8 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +86 47 31355.3 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +85 46 31355.8 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +84 45 31356.3 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +83 44 31356.8 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +82 43 31357.3 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +81 42 31357.8 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +80 41 31358.3 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +79 40 31358.8 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +87 48 31350.8 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +87 48 31350.8 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +31365.8 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31365.8 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31368.7688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31380.2063 228.2656 moveto +P$15 +31394.4719 231.2031 moveto +P$1l +31394.4719 230.2969 moveto +P$1m +31403.7375 231.4531 moveto +P$1y +31404.8938 227.8906 moveto +P$2n +31415.2531 227.8906 moveto +P$2o +31415.925 227.8906 moveto +P$1g +31421.4719 231.2031 moveto +P$1l +31421.4719 230.2969 moveto +P$1m +31426.3 230.4531 moveto +P$2r +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31351.8 248 moveto +85 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31351.8 256 moveto +85 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +125 48 9192.75 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +124 47 9193.25 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +123 46 9193.75 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +122 45 9194.25 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +121 44 9194.75 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +120 43 9195.25 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +119 42 9195.75 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +118 41 9196.25 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +117 40 9196.75 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +125 48 9188.75 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +125 48 9188.75 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9203.75 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9203.75 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9206.7188 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9225.4844 1004.9375 moveto +P$14 +9232.3438 1009.0469 moveto +P$2d +9237.8594 1009.7188 moveto +P$1i +9240.0156 1009.2656 moveto +P$1j +9246.6875 1007.4531 moveto +P$1y +9252.0625 1006.6406 moveto +P$1o +9260.5 1009.4688 moveto +P$1r +9259.4219 1009.1406 moveto +P$1s +9263.9531 1004.5938 moveto +P$1k +9268.0313 1011.5313 moveto +P$2v +9271.9219 1004.2656 moveto +P$2j +9280.4219 1007.2031 moveto +P$1l +9280.4219 1006.2969 moveto +P$1m +9290.6094 1006.7031 moveto +P$1h +9295.8594 1009.7188 moveto +P$1i +9298.0156 1009.2656 moveto +P$1j +9300.875 1003.8906 moveto +P$1g +9309.5 1009.4688 moveto +P$1r +9308.4219 1009.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9189.75 1024 moveto +123 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9189.75 1032 moveto +123 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +110 48 25500 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +109 47 25500.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +108 46 25501 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +107 45 25501.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +106 44 25502 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +105 43 25502.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +104 42 25503 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +103 41 25503.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +102 40 25504 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +110 48 25496 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +110 48 25496 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25511 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25511 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25513.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25526.1719 864.2656 moveto +P$2s +25535.6719 867.2031 moveto +P$1l +25535.6719 866.2969 moveto +P$1m +25544.9375 867.4531 moveto +P$1y +25551.2344 867.7188 moveto +P$1a +25562.4219 864.5469 moveto +P$1z +25570.75 869.4688 moveto +P$1r +25569.6719 869.1406 moveto +P$1s +25577.8594 866.7031 moveto +P$1h +25581.2031 864.5938 moveto +P$1k +25585.125 866.4531 moveto +P$1b +25585.125 863.8906 moveto +P$1c +25590.6719 867.2031 moveto +P$1l +25590.6719 866.2969 moveto +P$1m +25601.5938 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25497 884 moveto +108 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25497 892 moveto +108 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +104 48 25500 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +103 47 25500.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +102 46 25501 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +101 45 25501.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +100 44 25502 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +99 43 25502.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +98 42 25503 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +97 41 25503.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +96 40 25504 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +104 48 25496 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +104 48 25496 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25511 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25511 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25513.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25532.7344 724.9375 moveto +P$14 +25536.6719 727.2031 moveto +P$1l +25536.6719 726.2969 moveto +P$1m +25547.2344 727.7188 moveto +P$1a +25554.1719 732.0313 moveto +P$1e +25557.8438 729.7344 moveto +P$1f +25563.6719 727.2031 moveto +P$1l +25563.6719 726.2969 moveto +P$1m +25574.5938 729.0469 moveto +P$1d +25582.75 729.4688 moveto +P$1r +25581.6719 729.1406 moveto +P$1s +25590.5938 729.0469 moveto +P$1d +25594.2031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25497 744 moveto +102 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25497 752 moveto +102 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +140 48 25902 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +139 47 25902.5 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +138 46 25903 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +137 45 25903.5 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +136 44 25904 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +135 43 25904.5 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +134 42 25905 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +133 41 25905.5 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +132 40 25906 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +140 48 25898 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +140 48 25898 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25913 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25913 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25915.9688 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25929.3594 1005.2344 moveto +P$2p +25928.1719 1004.2656 moveto +P$2q +25940.1094 1009.7188 moveto +P$1i +25942.2656 1009.2656 moveto +P$1j +25946.2031 1004.5938 moveto +P$1k +25953.1094 1009.7188 moveto +P$1i +25955.2656 1009.2656 moveto +P$1j +25959.3594 1005.2344 moveto +P$2p +25958.1719 1004.2656 moveto +P$2q +25970.9375 1007.4531 moveto +P$1y +25972.125 1006.4531 moveto +P$1b +25972.125 1003.8906 moveto +P$1c +25974.3594 1006.4531 moveto +P$2f +25986.75 1009.4688 moveto +P$1r +25985.6719 1009.1406 moveto +P$1s +25994.5938 1009.0469 moveto +P$1d +26002.4219 1004.5469 moveto +P$1z +26010.75 1009.4688 moveto +P$1r +26009.6719 1009.1406 moveto +P$1s +26013.125 1003.8906 moveto +P$1g +26021.75 1009.4688 moveto +P$1r +26020.6719 1009.1406 moveto +P$1s +26028.8594 1006.7031 moveto +P$1h +26032.2031 1004.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25899 1024 moveto +138 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25899 1032 moveto +138 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +82 48 25776 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +81 47 25776.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +80 46 25777 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +79 45 25777.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +78 44 25778 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +77 43 25778.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +76 42 25779 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +75 41 25779.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +74 40 25780 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +82 48 25772 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +82 48 25772 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25787 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25787 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25789.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25802.1719 724.2656 moveto +P$2j +25808.125 726.4531 moveto +P$1b +25808.125 723.8906 moveto +P$1c +25815.3125 726.6406 moveto +P$1o +25819.2031 724.5938 moveto +P$1k +25828.75 729.4688 moveto +P$1r +25827.6719 729.1406 moveto +P$1s +25836.5938 729.0469 moveto +P$1d +25844.75 729.4688 moveto +P$1r +25843.6719 729.1406 moveto +P$1s +25850.9375 727.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25773 744 moveto +80 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25773 752 moveto +80 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +103 48 25893.8 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +102 47 25894.3 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +101 46 25894.8 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +100 45 25895.3 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +99 44 25895.8 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +98 43 25896.3 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +97 42 25896.8 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +96 41 25897.3 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +95 40 25897.8 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +103 48 25889.8 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +103 48 25889.8 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25904.8 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25904.8 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25907.7688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25919.9719 724.2656 moveto +P$2m +25935.55 729.4688 moveto +P$1r +25934.4719 729.1406 moveto +P$1s +25939.0031 724.5938 moveto +P$1k +25945.9094 729.7188 moveto +P$1i +25948.0656 729.2656 moveto +P$1j +25954.5344 725.0625 moveto +P$20 +25954.5344 724.1094 moveto +P$21 +25964.6438 729.7344 moveto +P$1f +25960.9719 727.4531 moveto +P$22 +25967.925 726.4531 moveto +P$23 +25967.925 723.8906 moveto +P$1c +25976.55 729.4688 moveto +P$1r +25975.4719 729.1406 moveto +P$1s +25983.6594 726.7031 moveto +P$1h +25987.0031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25890.8 744 moveto +101 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25890.8 752 moveto +101 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +101 48 25639.8 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +100 47 25640.3 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +99 46 25640.8 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +98 45 25641.3 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +97 44 25641.8 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +96 43 25642.3 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +95 42 25642.8 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +94 41 25643.3 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +93 40 25643.8 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +101 48 25635.8 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +101 48 25635.8 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25650.8 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25650.8 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25653.7688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25669.5344 725.0625 moveto +P$20 +25669.5344 724.1094 moveto +P$21 +25679.6438 729.7344 moveto +P$1f +25675.9719 727.4531 moveto +P$22 +25682.925 726.4531 moveto +P$23 +25682.925 723.8906 moveto +P$1c +25691.55 729.4688 moveto +P$1r +25690.4719 729.1406 moveto +P$1s +25698.6594 726.7031 moveto +P$1h +25702.0031 724.5938 moveto +P$1k +25704.7688 724.2656 moveto +P$1p +25715.6594 733.625 moveto +P$1q +25719.9719 732.0313 moveto +P$1e +25723.6438 729.7344 moveto +P$1f +25732.55 729.4688 moveto +P$1r +25731.4719 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25636.8 744 moveto +99 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25636.8 752 moveto +99 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +73 48 25682.8 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +72 47 25683.3 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +71 46 25683.8 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +70 45 25684.3 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +69 44 25684.8 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +68 43 25685.3 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +67 42 25685.8 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +66 41 25686.3 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +65 40 25686.8 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +73 48 25678.8 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +73 48 25678.8 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25693.8 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25693.8 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25696.7688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25712.5344 865.0625 moveto +P$20 +25712.5344 864.1094 moveto +P$21 +25718.9719 872.0313 moveto +P$1e +25722.6438 869.7344 moveto +P$1f +25727.0031 864.5938 moveto +P$1k +25730.925 866.4531 moveto +P$1b +25730.925 863.8906 moveto +P$1c +25736.4719 867.2031 moveto +P$1l +25736.4719 866.2969 moveto +P$1m +25747.3938 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25679.8 884 moveto +71 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25679.8 892 moveto +71 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +162 48 26032 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +161 47 26032.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +160 46 26033 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +159 45 26033.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +158 44 26034 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +157 43 26034.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +156 42 26035 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +155 41 26035.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +154 40 26036 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +162 48 26028 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +162 48 26028 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26043 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26043 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26045.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26059.3594 725.2344 moveto +P$27 +26058.1719 724.2656 moveto +P$28 +26071.75 729.4688 moveto +P$1r +26070.6719 729.1406 moveto +P$1s +26077.9375 727.4531 moveto +P$1y +26083.3125 726.6406 moveto +P$1o +26086.125 726.4531 moveto +P$1b +26086.125 723.8906 moveto +P$1c +26093.3125 726.6406 moveto +P$1o +26097.2031 724.5938 moveto +P$1k +26106.75 729.4688 moveto +P$1r +26105.6719 729.1406 moveto +P$1s +26114.5938 729.0469 moveto +P$1d +26118.2031 724.5938 moveto +P$1k +26123.3594 725.2344 moveto +P$2p +26122.1719 724.2656 moveto +P$2q +26134.1094 729.7188 moveto +P$1i +26136.2656 729.2656 moveto +P$1j +26140.2031 724.5938 moveto +P$1k +26147.1094 729.7188 moveto +P$1i +26149.2656 729.2656 moveto +P$1j +26155.7344 725.0625 moveto +P$20 +26157.3906 732.8594 moveto +P$2w +26161.0156 730.4219 moveto +P$1w +26163.7344 726.2969 moveto +P$1x +26174.75 729.4688 moveto +P$1r +26173.6719 729.1406 moveto +P$1s +26180.9375 727.4531 moveto +P$1y +26184.8594 733.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26029 744 moveto +160 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26029 752 moveto +160 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +132 48 25735 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +131 47 25735.5 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +130 46 25736 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +129 45 25736.5 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +128 44 25737 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +127 43 25737.5 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +126 42 25738 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +125 41 25738.5 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +124 40 25739 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +132 48 25731 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +132 48 25731 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25746 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25746 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25748.9688 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25762.3594 1005.2344 moveto +P$27 +25761.1719 1004.2656 moveto +P$28 +25772.9375 1007.4531 moveto +P$1y +25776.6719 1007.2031 moveto +P$1l +25776.6719 1006.2969 moveto +P$1m +25786.8594 1006.7031 moveto +P$1h +25794.75 1009.4688 moveto +P$1r +25793.6719 1009.1406 moveto +P$1s +25801.3125 1006.6406 moveto +P$1o +25808.3125 1006.6406 moveto +P$1o +25811.1719 1004.2656 moveto +P$2j +25817.125 1006.4531 moveto +P$1b +25817.125 1003.8906 moveto +P$1c +25824.3125 1006.6406 moveto +P$1o +25828.2031 1004.5938 moveto +P$1k +25837.75 1009.4688 moveto +P$1r +25836.6719 1009.1406 moveto +P$1s +25845.5938 1009.0469 moveto +P$1d +25853.75 1009.4688 moveto +P$1r +25852.6719 1009.1406 moveto +P$1s +25859.9375 1007.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25732 1024 moveto +130 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25732 1032 moveto +130 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +75 48 25790.8 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +74 47 25791.3 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +73 46 25791.8 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +72 45 25792.3 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +71 44 25792.8 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +70 43 25793.3 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +69 42 25793.8 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +68 41 25794.3 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +67 40 25794.8 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +75 48 25786.8 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +75 48 25786.8 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25801.8 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.8 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25804.7688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25816.2063 864.2656 moveto +P$15 +25827.925 866.4531 moveto +P$1b +25827.925 863.8906 moveto +P$1c +25835.2531 867.4531 moveto +P$18 +25831.5813 869.7344 moveto +P$19 +25843.2531 869.6563 moveto +P$2g +25844.3313 872.2031 moveto +P$2h +25852.55 869.4688 moveto +P$1r +25851.4719 869.1406 moveto +P$1s +25856.0031 864.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25787.8 884 moveto +73 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25787.8 892 moveto +73 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +108 48 25592 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +107 47 25592.5 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +106 46 25593 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +105 45 25593.5 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +104 44 25594 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +103 43 25594.5 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +102 42 25595 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +101 41 25595.5 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +100 40 25596 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +108 48 25588 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +108 48 25588 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25603 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25603 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25605.9688 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25617.4063 1004.2656 moveto +P$15 +25629.125 1006.4531 moveto +P$1b +25629.125 1003.8906 moveto +P$1c +25636.4531 1007.4531 moveto +P$18 +25632.7813 1009.7344 moveto +P$19 +25644.4531 1009.6563 moveto +P$2g +25645.5313 1012.2031 moveto +P$2h +25653.75 1009.4688 moveto +P$1r +25652.6719 1009.1406 moveto +P$1s +25657.2031 1004.5938 moveto +P$1k +25661.1719 1004.2656 moveto +P$2j +25670.1094 1009.7188 moveto +P$1i +25672.2656 1009.2656 moveto +P$1j +25679.8438 1009.7344 moveto +P$1f +25676.1719 1007.4531 moveto +P$22 +25688.75 1009.4688 moveto +P$1r +25687.6719 1009.1406 moveto +P$1s +25691.125 1003.8906 moveto +P$1g +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25589 1024 moveto +106 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25589 1032 moveto +106 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +116 48 14311.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +115 47 14312 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +114 46 14312.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +113 45 14313 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +112 44 14313.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +111 43 14314 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +110 42 14314.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +109 41 14315 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +108 40 14315.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +116 48 14307.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +116 48 14307.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14322.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14322.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14325.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14338.8594 353.2344 moveto +P$2p +14337.6719 352.2656 moveto +P$2q +14346.5156 358.4219 moveto +P$1w +14349.2344 354.2969 moveto +P$1x +14359.3438 357.7344 moveto +P$1f +14355.6719 355.4531 moveto +P$22 +14362.625 351.8906 moveto +P$1g +14365.625 354.4531 moveto +P$1b +14365.625 351.8906 moveto +P$1c +14374.0938 357.0469 moveto +P$1d +14383.2344 352.9375 moveto +P$14 +14387.1719 355.2031 moveto +P$1l +14387.1719 354.2969 moveto +P$1m +14396.4375 355.4531 moveto +P$1y +14403.25 357.4688 moveto +P$1r +14402.1719 357.1406 moveto +P$1s +14405.6719 352.2656 moveto +P$26 +14418.9219 352.5469 moveto P$1z fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1832.75 372 moveto -161 0 rlineto +14308.5 372 moveto +114 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1832.75 380 moveto -161 0 rlineto +14308.5 380 moveto +114 0 rlineto closepath stroke 0.7843 0.7843 0.7843 setrgbcolor -94 48 1887 468 1 roundrect +126 48 14806 344 1 roundrect closepath eofill 0.7098 0.7098 0.7098 setrgbcolor -93 47 1887.5 468.5 1 roundrect +125 47 14806.5 344.5 1 roundrect closepath eofill 0.6353 0.6353 0.6353 setrgbcolor -92 46 1888 469 1 roundrect +124 46 14807 345 1 roundrect closepath eofill 0.5608 0.5608 0.5608 setrgbcolor -91 45 1888.5 469.5 1 roundrect +123 45 14807.5 345.5 1 roundrect closepath eofill 0.4902 0.4902 0.4902 setrgbcolor -90 44 1889 470 1 roundrect +122 44 14808 346 1 roundrect closepath eofill 0.4157 0.4157 0.4157 setrgbcolor -89 43 1889.5 470.5 1 roundrect +121 43 14808.5 346.5 1 roundrect closepath eofill 0.3412 0.3412 0.3412 setrgbcolor -88 42 1890 471 1 roundrect +120 42 14809 347 1 roundrect closepath eofill 0.2667 0.2667 0.2667 setrgbcolor -87 41 1890.5 471.5 1 roundrect +119 41 14809.5 347.5 1 roundrect closepath eofill 0.1961 0.1961 0.1961 setrgbcolor -86 40 1891 472 1 roundrect +118 40 14810 348 1 roundrect closepath eofill 0.9961 0.9961 0.8078 setrgbcolor -94 48 1883 464 simplerect +126 48 14802 340 simplerect closepath eofill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor -94 48 1883 464 simplerect +126 48 14802 340 simplerect closepath stroke 0.6784 0.8196 0.698 setrgbcolor newpath -1898 480 11 0 360 arc +14817 356 11 0 360 arc closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1898 480 11 0 360 arc +14817 356 11 0 360 arc closepath stroke 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1900.9688 485.6406 moveto -P$11 -fill -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1914.3594 480.8438 moveto -P$12 -1914.3594 477.2344 moveto +14819.9688 361.6406 moveto P$13 -1913.1719 476.2656 moveto -P$14 -1923.6719 479.2031 moveto -P$1w -1923.6719 478.2969 moveto -P$1x -1931.6719 479.2031 moveto -P$1w -1931.6719 478.2969 moveto -P$1x -1937.0938 475.8906 moveto -P$2k -1949.2344 479.7188 moveto -P$21 -1958.1094 481.7188 moveto -P$15 -1960.2656 481.2656 moveto -P$16 -1966.9375 479.4531 moveto -P$1j -1968.0938 475.8906 moveto -P$2k -fill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1884 496 moveto -92 0 rlineto -closepath stroke -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1884 504 moveto -92 0 rlineto -closepath stroke -0.7843 0.7843 0.7843 setrgbcolor -136 48 1664 344 1 roundrect -closepath eofill -0.7098 0.7098 0.7098 setrgbcolor -135 47 1664.5 344.5 1 roundrect -closepath eofill -0.6353 0.6353 0.6353 setrgbcolor -134 46 1665 345 1 roundrect -closepath eofill -0.5608 0.5608 0.5608 setrgbcolor -133 45 1665.5 345.5 1 roundrect -closepath eofill -0.4902 0.4902 0.4902 setrgbcolor -132 44 1666 346 1 roundrect -closepath eofill -0.4157 0.4157 0.4157 setrgbcolor -131 43 1666.5 346.5 1 roundrect -closepath eofill -0.3412 0.3412 0.3412 setrgbcolor -130 42 1667 347 1 roundrect -closepath eofill -0.2667 0.2667 0.2667 setrgbcolor -129 41 1667.5 347.5 1 roundrect -closepath eofill -0.1961 0.1961 0.1961 setrgbcolor -128 40 1668 348 1 roundrect -closepath eofill -0.9961 0.9961 0.8078 setrgbcolor -136 48 1660 340 simplerect -closepath eofill -1.5 setlinewidth -0.6588 0 0.2118 setrgbcolor -136 48 1660 340 simplerect -closepath stroke -0.6784 0.8196 0.698 setrgbcolor -newpath -1675 356 11 0 360 arc -closepath eofill -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1675 356 11 0 360 arc -closepath stroke -0 setlinewidth -[] 0 setdash -0 0 0 setrgbcolor -newpath -1677.9688 361.6406 moveto -P$11 fill 0 setlinewidth [] 0 setdash 0 0 0 setrgbcolor newpath -1691.3594 356.8438 moveto -P$12 -1691.3594 353.2344 moveto -P$13 -1690.1719 352.2656 moveto -P$14 -1700.6719 355.2031 moveto -P$1w -1700.6719 354.2969 moveto -P$1x -1708.6719 355.2031 moveto -P$1w -1708.6719 354.2969 moveto -P$1x -1714.0938 351.8906 moveto -P$2k -1726.2344 355.7188 moveto -P$21 -1735.1094 357.7188 moveto -P$15 -1737.2656 357.2656 moveto -P$16 -1743.9375 355.4531 moveto -P$1j -1745.0938 351.8906 moveto -P$2k -1753.3594 353.2344 moveto -P$22 -1752.1719 352.2656 moveto -P$23 -1762.6719 355.2031 moveto -P$1w -1762.6719 354.2969 moveto -P$1x -1771.9375 355.4531 moveto -P$1j -1774.2031 352.5938 moveto -P$1h -1778.125 351.8906 moveto -P$1k -1786.75 357.4688 moveto +14832.1719 352.2656 moveto +P$2s +14839.125 354.4531 moveto +P$1b +14839.125 351.8906 moveto +P$1c +14842.125 351.8906 moveto +P$1g +14850.75 357.4688 moveto +P$1r +14849.6719 357.1406 moveto P$1s -1785.6719 357.1406 moveto -P$1t -1790.2031 352.5938 moveto +14856.1094 353.4375 moveto +P$16 +14855.4375 352.2656 moveto +P$17 +14862.2031 352.5938 moveto +P$1k +14867.2031 352.5938 moveto +P$1k +14874.1094 357.7188 moveto +P$1i +14876.2656 357.2656 moveto +P$1j +14883.8594 354.7031 moveto P$1h +14891.5938 357.0469 moveto +P$2d +14899.2344 355.7188 moveto +P$1a +14910.75 357.4688 moveto +P$1r +14909.6719 357.1406 moveto +P$1s +14918.5938 357.0469 moveto +P$1d +14922.2031 352.5938 moveto +P$1k fill 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1661 372 moveto +14803 372 moveto +124 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14803 380 moveto +124 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +196 48 14967.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +195 47 14968 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +194 46 14968.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +193 45 14969 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +192 44 14969.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +191 43 14970 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +190 42 14970.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +189 41 14971 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +188 40 14971.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +196 48 14963.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +196 48 14963.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14978.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14978.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14981.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14999.6406 359.7656 moveto +P$25 +15008.25 357.4688 moveto +P$1r +15007.1719 357.1406 moveto +P$1s +15016.0938 357.0469 moveto +P$1d +15024.25 357.4688 moveto +P$1r +15023.1719 357.1406 moveto +P$1s +15030.4375 355.4531 moveto +P$1y +15031.625 354.4531 moveto +P$1b +15031.625 351.8906 moveto +P$1c +15039.3594 354.7031 moveto +P$1h +15045.2344 353.0625 moveto +P$20 +15045.2344 352.1094 moveto +P$21 +15054.4375 355.4531 moveto +P$1y +15059.9531 357.6563 moveto +P$2g +15061.0313 360.2031 moveto +P$2h +15066.6094 357.7188 moveto +P$1i +15068.7656 357.2656 moveto +P$1j +15071.5469 352.2656 moveto +P$24 +15086.0938 357.0469 moveto +P$1d +15088.625 354.4531 moveto +P$1b +15088.625 351.8906 moveto +P$1c +15092.7031 352.5938 moveto +P$1k +15095.4688 352.2656 moveto +P$1p +15109.25 357.4688 moveto +P$1r +15108.1719 357.1406 moveto +P$1s +15117.0938 354.4531 moveto +P$2c +15118.7031 352.5938 moveto +P$1k +15125.6094 353.4375 moveto +P$16 +15124.9375 352.2656 moveto +P$17 +15134.8125 354.6406 moveto +P$1o +15141.8125 354.6406 moveto +P$1o +15150.25 357.4688 moveto +P$1r +15149.1719 357.1406 moveto +P$1s +15153.7031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14964.5 372 moveto +194 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14964.5 380 moveto +194 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +170 48 14601 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +169 47 14601.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +168 46 14602 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +167 45 14602.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +166 44 14603 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +165 43 14603.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +164 42 14604 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +163 41 14604.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +162 40 14605 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +170 48 14597 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +170 48 14597 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14612 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14612 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14614.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14627.1719 352.2656 moveto +P$2i +14631.2031 352.5938 moveto +P$1k +14640.75 357.4688 moveto +P$1r +14639.6719 357.1406 moveto +P$1s +14648.2344 355.7188 moveto +P$1a +14654.1719 352.2656 moveto +P$2i +14662.2344 355.7188 moveto +P$1a +14671.1094 357.7188 moveto +P$1i +14673.2656 357.2656 moveto +P$1j +14680.4531 357.6563 moveto +P$2g +14681.5313 360.2031 moveto +P$2h +14689.75 357.4688 moveto +P$1r +14688.6719 357.1406 moveto +P$1s +14695.1094 353.4375 moveto +P$16 +14694.4375 352.2656 moveto +P$17 +14701.2031 352.5938 moveto +P$1k +14706.2031 352.5938 moveto +P$1k +14713.1094 357.7188 moveto +P$1i +14715.2656 357.2656 moveto +P$1j +14722.8594 354.7031 moveto +P$1h +14730.5938 357.0469 moveto +P$2d +14738.2344 355.7188 moveto +P$1a +14749.75 357.4688 moveto +P$1r +14748.6719 357.1406 moveto +P$1s +14757.5938 357.0469 moveto +P$1d +14761.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14598 372 moveto +168 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14598 380 moveto +168 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +69 48 15198.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +68 47 15199.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +67 46 15199.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +66 45 15200.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +65 44 15200.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +64 43 15201.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +63 42 15201.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +62 41 15202.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +61 40 15202.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +69 48 15194.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +69 48 15194.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15209.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15209.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15212.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15224.9719 352.2656 moveto +P$29 +15236.4719 355.2031 moveto +P$1l +15236.4719 354.2969 moveto +P$1m +15243.0031 352.5938 moveto +P$1k +15252.55 357.4688 moveto +P$1r +15251.4719 357.1406 moveto +P$1s +15259.1125 354.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15195.8 372 moveto +67 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15195.8 380 moveto +67 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +104 48 14462 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +103 47 14462.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +102 46 14463 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +101 45 14463.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +100 44 14464 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +99 43 14464.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +98 42 14465 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +97 41 14465.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +96 40 14466 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +104 48 14458 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +104 48 14458 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14473 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14473 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14475.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14492.3281 356.9063 moveto +P$2a +14489.3594 353.2344 moveto +P$2b +14501.75 357.4688 moveto +P$1r +14500.6719 357.1406 moveto +P$1s +14504.125 351.8906 moveto +P$1g +14510.1094 357.7188 moveto +P$1i +14512.2656 357.2656 moveto +P$1j +14516.2031 352.5938 moveto +P$1k +14525.75 357.4688 moveto +P$1r +14524.6719 357.1406 moveto +P$1s +14532.4531 355.4531 moveto +P$18 +14528.7813 357.7344 moveto +P$19 +14536.1719 352.2656 moveto +P$2j +14542.125 354.4531 moveto +P$1b +14542.125 351.8906 moveto +P$1c +14550.5938 357.0469 moveto +P$1d +14553.0938 351.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14459 372 moveto +102 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14459 380 moveto +102 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +112 48 15303.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +111 47 15304 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +110 46 15304.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +109 45 15305 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +108 44 15305.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +107 43 15306 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +106 42 15306.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +105 41 15307 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +104 40 15307.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +112 48 15299.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +112 48 15299.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15314.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15314.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15317.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15333.8281 356.9063 moveto +P$2a +15330.8594 353.2344 moveto +P$2b +15343.25 357.4688 moveto +P$1r +15342.1719 357.1406 moveto +P$1s +15345.625 351.8906 moveto +P$1g +15354.25 357.4688 moveto +P$1r +15353.1719 357.1406 moveto +P$1s +15359.6094 357.7188 moveto +P$1i +15361.7656 357.2656 moveto +P$1j +15365.7031 352.5938 moveto +P$1k +15375.25 357.4688 moveto +P$1r +15374.1719 357.1406 moveto +P$1s +15381.9531 355.4531 moveto +P$18 +15378.2813 357.7344 moveto +P$19 +15385.6719 352.2656 moveto +P$2j +15391.625 354.4531 moveto +P$1b +15391.625 351.8906 moveto +P$1c +15400.0938 357.0469 moveto +P$1d +15402.5938 351.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15300.5 372 moveto +110 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15300.5 380 moveto +110 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +56 48 14585.5 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +55 47 14586 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +54 46 14586.5 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +53 45 14587 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +52 44 14587.5 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +51 43 14588 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +50 42 14588.5 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +49 41 14589 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +48 40 14589.5 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +56 48 14581.5 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +56 48 14581.5 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14596.5 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14596.5 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14599.4688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14611.6719 476.2656 moveto +P$2j +14617.625 478.4531 moveto +P$1b +14617.625 475.8906 moveto +P$1c +14626.0938 481.0469 moveto +P$1d +14628.5938 475.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14582.5 496 moveto +54 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14582.5 504 moveto +54 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +163 48 14676.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +162 47 14677.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +161 46 14677.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +160 45 14678.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +159 44 14678.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +158 43 14679.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +157 42 14679.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +156 41 14680.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +155 40 14680.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +163 48 14672.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +163 48 14672.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14687.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14687.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14690.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14707.1281 480.9063 moveto +P$2a +14704.1594 477.2344 moveto +P$2b +14716.55 481.4688 moveto +P$1r +14715.4719 481.1406 moveto +P$1s +14718.8156 482.4219 moveto +P$1w +14721.5344 478.2969 moveto +P$1x +14731.1125 478.6406 moveto +P$1o +14736.9094 481.7188 moveto +P$1i +14739.0656 481.2656 moveto +P$1j +14746.6438 481.7344 moveto +P$1f +14742.9719 479.4531 moveto +P$22 +14749.925 475.8906 moveto +P$1g +14758.55 481.4688 moveto +P$1r +14757.4719 481.1406 moveto +P$1s +14760.9719 476.2656 moveto +P$2i +14769.0344 479.7188 moveto +P$1a +14777.9094 481.7188 moveto +P$1i +14780.0656 481.2656 moveto +P$1j +14787.2531 481.6563 moveto +P$2g +14788.3313 484.2031 moveto +P$2h +14796.55 481.4688 moveto +P$1r +14795.4719 481.1406 moveto +P$1s +14801.9094 477.4375 moveto +P$16 +14801.2375 476.2656 moveto +P$17 +14811.1125 478.6406 moveto +P$1o +14818.1125 478.6406 moveto +P$1o +14826.55 481.4688 moveto +P$1r +14825.4719 481.1406 moveto +P$1s +14830.0031 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14673.8 496 moveto +161 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14673.8 504 moveto +161 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +62 48 14214.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +61 47 14215 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +60 46 14215.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +59 45 14216 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +58 44 14216.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +57 43 14217 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +56 42 14217.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +55 41 14218 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +54 40 14218.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +62 48 14210.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +62 48 14210.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +14225.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14225.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14228.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +14240.6719 352.2656 moveto +P$29 +14252.1719 355.2031 moveto +P$1l +14252.1719 354.2969 moveto +P$1m +14258.7031 352.5938 moveto +P$1k +14268.25 357.4688 moveto +P$1r +14267.1719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14211.5 372 moveto +60 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14211.5 380 moveto +60 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +109 48 15304.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +108 47 15305.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +107 46 15305.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +106 45 15306.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +105 44 15306.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +104 43 15307.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +103 42 15307.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +102 41 15308.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +101 40 15308.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +109 48 15300.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +109 48 15300.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15315.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15315.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15318.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15337.5344 476.9375 moveto +P$14 +15341.4719 479.2031 moveto +P$1l +15341.4719 478.2969 moveto +P$1m +15352.3938 481.0469 moveto +P$1d +15356.0031 476.5938 moveto +P$1k +15365.55 481.4688 moveto +P$1r +15364.4719 481.1406 moveto +P$1s +15373.3938 481.0469 moveto +P$1d +15377.0031 476.5938 moveto +P$1k +15380.9719 476.2656 moveto +P$2i +15385.0031 476.5938 moveto +P$1k +15394.55 481.4688 moveto +P$1r +15393.4719 481.1406 moveto +P$1s +15402.0344 479.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15301.8 496 moveto +107 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15301.8 504 moveto +107 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +56 48 9040.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +55 47 9041 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +54 46 9041.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +53 45 9042 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +52 44 9042.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +51 43 9043 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +50 42 9043.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +49 41 9044 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +48 40 9044.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +56 48 9036.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +56 48 9036.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9051.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9051.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9054.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9066.6719 724.2656 moveto +P$2j +9072.625 726.4531 moveto +P$1b +9072.625 723.8906 moveto +P$1c +9081.0938 729.0469 moveto +P$1d +9083.5938 723.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9037.5 744 moveto +54 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9037.5 752 moveto +54 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +194 48 8140.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +193 47 8141 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +192 46 8141.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +191 45 8142 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +190 44 8142.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +189 43 8143 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +188 42 8143.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +187 41 8144 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +186 40 8144.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +194 48 8136.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +194 48 8136.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8151.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8151.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8154.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8172.6406 731.7656 moveto +P$25 +8181.25 729.4688 moveto +P$1r +8180.1719 729.1406 moveto +P$1s +8189.0938 729.0469 moveto +P$1d +8197.25 729.4688 moveto +P$1r +8196.1719 729.1406 moveto +P$1s +8203.4375 727.4531 moveto +P$1y +8204.625 726.4531 moveto +P$1b +8204.625 723.8906 moveto +P$1c +8212.3594 726.7031 moveto +P$1h +8218.2344 725.0625 moveto +P$20 +8218.2344 724.1094 moveto +P$21 +8227.4375 727.4531 moveto +P$1y +8232.9531 729.6563 moveto +P$2g +8234.0313 732.2031 moveto +P$2h +8239.6094 729.7188 moveto +P$1i +8241.7656 729.2656 moveto +P$1j +8250.0938 729.0469 moveto +P$1d +8252.625 726.4531 moveto +P$1b +8252.625 723.8906 moveto +P$1c +8255.1563 726.4531 moveto +P$2k +8263.6094 729.7188 moveto +P$1i +8265.7656 729.2656 moveto +P$1j +8269.7031 724.5938 moveto +P$1k +8273.625 726.4531 moveto +P$1b +8273.625 723.8906 moveto +P$1c +8279.1719 727.2031 moveto +P$1l +8279.1719 726.2969 moveto +P$1m +8290.0938 729.0469 moveto +P$1d +8295.6094 729.7188 moveto +P$1i +8297.7656 729.2656 moveto +P$1j +8300.625 723.8906 moveto +P$1g +8303.5469 724.2656 moveto +P$24 +8318.0938 729.0469 moveto +P$1d +8320.625 726.4531 moveto +P$1b +8320.625 723.8906 moveto +P$1c +8324.7031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8137.5 744 moveto +192 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8137.5 752 moveto +192 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +112 48 7212.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +111 47 7213 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +110 46 7213.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +109 45 7214 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +108 44 7214.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +107 43 7215 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +106 42 7215.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +105 41 7216 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +104 40 7216.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +112 48 7208.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +112 48 7208.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7223.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7223.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7226.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7241.6094 725.4375 moveto +P$16 +7240.9375 724.2656 moveto +P$17 +7250.9531 727.4531 moveto +P$18 +7247.2813 729.7344 moveto +P$19 +7258.9531 727.4531 moveto +P$18 +7255.2813 729.7344 moveto +P$19 +7266.4375 727.4531 moveto +P$1y +7273.25 729.4688 moveto +P$1r +7272.1719 729.1406 moveto +P$1s +7279.8125 726.6406 moveto +P$1o +7286.8125 726.6406 moveto +P$1o +7288.4688 724.2656 moveto +P$1p +7299.3594 733.625 moveto +P$1q +7303.6719 732.0313 moveto +P$1e +7307.3438 729.7344 moveto +P$1f +7316.25 729.4688 moveto +P$1r +7315.1719 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7209.5 744 moveto +110 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7209.5 752 moveto +110 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +80 48 6383 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +79 47 6383.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +78 46 6384 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +77 45 6384.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +76 44 6385 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +75 43 6385.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +74 42 6386 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +73 41 6386.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +72 40 6387 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +80 48 6379 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +80 48 6379 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6394 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6394 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6396.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6412.1094 865.4375 moveto +P$16 +6411.4375 864.2656 moveto +P$17 +6421.4531 869.6563 moveto +P$2g +6422.5313 872.2031 moveto +P$2h +6430.75 869.4688 moveto +P$1r +6429.6719 869.1406 moveto +P$1s +6438.5938 869.0469 moveto +P$1d +6445.4531 867.4531 moveto +P$18 +6441.7813 869.7344 moveto +P$19 +6452.1094 869.7188 moveto +P$1i +6454.2656 869.2656 moveto +P$1j +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6380 884 moveto +78 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6380 892 moveto +78 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +71 48 6498.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +70 47 6499.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +69 46 6499.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +68 45 6500.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +67 44 6500.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +66 43 6501.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +65 42 6501.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +64 41 6502.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +63 40 6502.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +71 48 6494.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +71 48 6494.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6509.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6509.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6512.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6527.8594 865.4375 moveto +P$16 +6527.1875 864.2656 moveto +P$17 +6536.6875 867.4531 moveto +P$1y +6538.9531 864.5938 moveto +P$1k +6542.875 866.4531 moveto +P$1b +6542.875 863.8906 moveto +P$1c +6550.6094 866.7031 moveto +P$1h +6552.875 863.8906 moveto +P$1g +6561.5 869.4688 moveto +P$1r +6560.4219 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6495.75 884 moveto +69 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6495.75 892 moveto +69 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +118 48 5037 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +117 47 5037.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +116 46 5038 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +115 45 5038.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +114 44 5039 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +113 43 5039.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +112 42 5040 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +111 41 5040.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +110 40 5041 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +118 48 5033 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +118 48 5033 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5048 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5048 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5050.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5066.1094 865.4375 moveto +P$16 +5065.4375 864.2656 moveto +P$17 +5074.9375 867.4531 moveto +P$1y +5077.2031 864.5938 moveto +P$1k +5081.125 866.4531 moveto +P$1b +5081.125 863.8906 moveto +P$1c +5088.8594 866.7031 moveto +P$1h +5091.125 863.8906 moveto +P$1g +5099.75 869.4688 moveto +P$1r +5098.6719 869.1406 moveto +P$1s +5107.4219 864.5469 moveto +P$1z +5115.75 869.4688 moveto +P$1r +5114.6719 869.1406 moveto +P$1s +5122.8594 866.7031 moveto +P$1h +5126.2031 864.5938 moveto +P$1k +5130.125 866.4531 moveto +P$1b +5130.125 863.8906 moveto +P$1c +5135.6719 867.2031 moveto +P$1l +5135.6719 866.2969 moveto +P$1m +5146.5938 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5034 884 moveto +116 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5034 892 moveto +116 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +94 48 6679 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +93 47 6679.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +92 46 6680 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +91 45 6680.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +90 44 6681 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +89 43 6681.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +88 42 6682 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +87 41 6682.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +86 40 6683 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +94 48 6675 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +94 48 6675 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6690 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6690 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6692.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6706.3594 728.8438 moveto +P$1t +6706.3594 725.2344 moveto +P$1u +6705.1719 724.2656 moveto +P$1v +6715.6719 727.2031 moveto +P$1l +6715.6719 726.2969 moveto +P$1m +6723.6719 727.2031 moveto +P$1l +6723.6719 726.2969 moveto +P$1m +6729.0938 723.8906 moveto +P$2n +6741.2344 727.7188 moveto +P$1a +6750.1094 729.7188 moveto +P$1i +6752.2656 729.2656 moveto +P$1j +6758.9375 727.4531 moveto +P$1y +6760.0938 723.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6676 744 moveto +92 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6676 752 moveto +92 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +81 48 6150.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +80 47 6151.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +79 46 6151.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +78 45 6152.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +77 44 6152.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +76 43 6153.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +75 42 6153.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +74 41 6154.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +73 40 6154.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +81 48 6146.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +81 48 6146.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6161.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6161.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6164.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6183.4844 864.9375 moveto +P$14 +6187.4219 867.2031 moveto +P$1l +6187.4219 866.2969 moveto +P$1m +6198.3438 869.0469 moveto +P$1d +6201.9531 864.5938 moveto +P$1k +6208.8594 869.7188 moveto +P$1i +6211.0156 869.2656 moveto +P$1j +6218.6094 866.7031 moveto +P$1h +6221.9531 864.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6147.75 884 moveto +79 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6147.75 892 moveto +79 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +120 48 8655.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +119 47 8656 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +118 46 8656.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +117 45 8657 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +116 44 8657.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +115 43 8658 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +114 42 8658.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +113 41 8659 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +112 40 8659.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +120 48 8651.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +120 48 8651.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8666.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8666.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8669.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8688.2344 724.9375 moveto +P$14 +8692.1719 727.2031 moveto +P$1l +8692.1719 726.2969 moveto +P$1m +8703.0938 729.0469 moveto +P$1d +8706.7031 724.5938 moveto +P$1k +8716.25 729.4688 moveto +P$1r +8715.1719 729.1406 moveto +P$1s +8724.0938 729.0469 moveto +P$1d +8727.7031 724.5938 moveto +P$1k +8737.6406 731.7656 moveto +P$25 +8744.4375 727.4531 moveto +P$1y +8748.1719 727.2031 moveto +P$1l +8748.1719 726.2969 moveto +P$1m +8753.5156 730.4219 moveto +P$1w +8756.2344 726.2969 moveto +P$1x +8762.6719 732.0313 moveto +P$1e +8766.3438 729.7344 moveto +P$1f +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8652.5 744 moveto +118 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8652.5 752 moveto +118 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +192 48 8651 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +191 47 8651.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +190 46 8652 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +189 45 8652.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +188 44 8653 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +187 43 8653.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +186 42 8654 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +185 41 8654.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +184 40 8655 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +192 48 8647 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +192 48 8647 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8662 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8662 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8664.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8683.7344 864.9375 moveto +P$14 +8687.6719 867.2031 moveto +P$1l +8687.6719 866.2969 moveto +P$1m +8698.5938 869.0469 moveto +P$1d +8702.2031 864.5938 moveto +P$1k +8711.75 869.4688 moveto +P$1r +8710.6719 869.1406 moveto +P$1s +8719.5938 869.0469 moveto +P$1d +8723.2031 864.5938 moveto +P$1k +8733.1406 871.7656 moveto +P$25 +8739.9375 867.4531 moveto +P$1y +8743.6719 867.2031 moveto +P$1l +8743.6719 866.2969 moveto +P$1m +8749.0156 870.4219 moveto +P$1w +8751.7344 866.2969 moveto +P$1x +8758.1719 872.0313 moveto +P$1e +8761.8438 869.7344 moveto +P$1f +8768.1094 865.4375 moveto +P$16 +8767.4375 864.2656 moveto +P$17 +8777.3125 866.6406 moveto +P$1o +8784.3125 866.6406 moveto +P$1o +8789.6719 867.2031 moveto +P$1l +8789.6719 866.2969 moveto +P$1m +8799.8594 866.7031 moveto +P$1h +8802.125 866.4531 moveto +P$1b +8802.125 863.8906 moveto +P$1c +8808.1094 869.7188 moveto +P$1i +8810.2656 869.2656 moveto +P$1j +8814.2031 864.5938 moveto +P$1k +8818.125 866.4531 moveto +P$1b +8818.125 863.8906 moveto +P$1c +8823.6719 867.2031 moveto +P$1l +8823.6719 866.2969 moveto +P$1m +8834.5938 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8648 884 moveto +190 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8648 892 moveto +190 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +113 48 5730.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +112 47 5731.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +111 46 5731.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +110 45 5732.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +109 44 5732.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +108 43 5733.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +107 42 5733.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +106 41 5734.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +105 40 5734.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +113 48 5726.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +113 48 5726.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5741.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5741.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5744.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5758.1094 725.2344 moveto +P$2p +5756.9219 724.2656 moveto +P$2q +5771.5 729.4688 moveto +P$1r +5770.4219 729.1406 moveto +P$1s +5778.6094 726.7031 moveto +P$1h +5780.875 726.4531 moveto +P$1b +5780.875 723.8906 moveto +P$1c +5788.0625 726.6406 moveto +P$1o +5790.875 726.4531 moveto +P$1b +5790.875 723.8906 moveto +P$1c +5796.4219 727.2031 moveto +P$1l +5796.4219 726.2969 moveto +P$1m +5807.3438 729.0469 moveto +P$1d +5808.7188 724.2656 moveto +P$1p +5820.6875 727.4531 moveto +P$1y +5827.5 729.4688 moveto +P$1r +5826.4219 729.1406 moveto +P$1s +5835.5 729.4688 moveto +P$1r +5834.4219 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5727.75 744 moveto +111 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5727.75 752 moveto +111 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +160 48 5190 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +159 47 5190.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +158 46 5191 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +157 45 5191.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +156 44 5192 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +155 43 5192.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +154 42 5193 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +153 41 5193.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +152 40 5194 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +160 48 5186 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +160 48 5186 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5201 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5201 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5203.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5217.3594 865.2344 moveto +P$2p +5216.1719 864.2656 moveto +P$2q +5230.75 869.4688 moveto +P$1r +5229.6719 869.1406 moveto +P$1s +5237.8594 866.7031 moveto +P$1h +5240.125 866.4531 moveto +P$1b +5240.125 863.8906 moveto +P$1c +5247.3125 866.6406 moveto +P$1o +5250.125 866.4531 moveto +P$1b +5250.125 863.8906 moveto +P$1c +5255.6719 867.2031 moveto +P$1l +5255.6719 866.2969 moveto +P$1m +5266.5938 869.0469 moveto +P$1d +5267.9688 864.2656 moveto +P$1p +5279.9375 867.4531 moveto +P$1y +5286.75 869.4688 moveto +P$1r +5285.6719 869.1406 moveto +P$1s +5294.75 869.4688 moveto +P$1r +5293.6719 869.1406 moveto +P$1s +5302.4219 864.5469 moveto +P$1z +5310.75 869.4688 moveto +P$1r +5309.6719 869.1406 moveto +P$1s +5317.8594 866.7031 moveto +P$1h +5321.2031 864.5938 moveto +P$1k +5325.125 866.4531 moveto +P$1b +5325.125 863.8906 moveto +P$1c +5330.6719 867.2031 moveto +P$1l +5330.6719 866.2969 moveto +P$1m +5341.5938 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5187 884 moveto +158 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5187 892 moveto +158 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +154 48 7804 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +153 47 7804.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +152 46 7805 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +151 45 7805.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +150 44 7806 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +149 43 7806.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +148 42 7807 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +147 41 7807.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +146 40 7808 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +154 48 7800 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +154 48 7800 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7815 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7815 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7817.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7831.3594 725.2344 moveto +P$2p +7830.1719 724.2656 moveto +P$2q +7844.75 729.4688 moveto +P$1r +7843.6719 729.1406 moveto +P$1s +7851.8594 726.7031 moveto +P$1h +7854.125 726.4531 moveto +P$1b +7854.125 723.8906 moveto +P$1c +7861.3125 726.6406 moveto +P$1o +7864.125 726.4531 moveto +P$1b +7864.125 723.8906 moveto +P$1c +7869.6719 727.2031 moveto +P$1l +7869.6719 726.2969 moveto +P$1m +7880.5938 729.0469 moveto +P$1d +7881.9688 724.2656 moveto +P$1p +7893.9375 727.4531 moveto +P$1y +7900.75 729.4688 moveto +P$1r +7899.6719 729.1406 moveto +P$1s +7908.75 729.4688 moveto +P$1r +7907.6719 729.1406 moveto +P$1s +7914.7344 725.0625 moveto +P$20 +7914.7344 724.1094 moveto +P$21 +7921.1719 732.0313 moveto +P$1e +7924.8438 729.7344 moveto +P$1f +7929.2031 724.5938 moveto +P$1k +7933.125 726.4531 moveto +P$1b +7933.125 723.8906 moveto +P$1c +7938.6719 727.2031 moveto +P$1l +7938.6719 726.2969 moveto +P$1m +7949.5938 729.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7801 744 moveto +152 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7801 752 moveto +152 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +242 48 7694.5 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +241 47 7695 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +240 46 7695.5 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +239 45 7696 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +238 44 7696.5 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +237 43 7697 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +236 42 7697.5 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +235 41 7698 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +234 40 7698.5 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +242 48 7690.5 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +242 48 7690.5 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7705.5 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7705.5 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7708.4688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7721.8594 865.2344 moveto +P$2p +7720.6719 864.2656 moveto +P$2q +7735.25 869.4688 moveto +P$1r +7734.1719 869.1406 moveto +P$1s +7742.3594 866.7031 moveto +P$1h +7744.625 866.4531 moveto +P$1b +7744.625 863.8906 moveto +P$1c +7751.8125 866.6406 moveto +P$1o +7754.625 866.4531 moveto +P$1b +7754.625 863.8906 moveto +P$1c +7760.1719 867.2031 moveto +P$1l +7760.1719 866.2969 moveto +P$1m +7771.0938 869.0469 moveto +P$1d +7772.4688 864.2656 moveto +P$1p +7784.4375 867.4531 moveto +P$1y +7791.25 869.4688 moveto +P$1r +7790.1719 869.1406 moveto +P$1s +7799.25 869.4688 moveto +P$1r +7798.1719 869.1406 moveto +P$1s +7806.9219 864.5469 moveto +P$1z +7815.25 869.4688 moveto +P$1r +7814.1719 869.1406 moveto +P$1s +7822.3594 866.7031 moveto +P$1h +7825.7031 864.5938 moveto +P$1k +7829.625 866.4531 moveto +P$1b +7829.625 863.8906 moveto +P$1c +7835.1719 867.2031 moveto +P$1l +7835.1719 866.2969 moveto +P$1m +7846.0938 869.0469 moveto +P$1d +7852.2344 865.0625 moveto +P$20 +7852.2344 864.1094 moveto +P$21 +7858.6719 872.0313 moveto +P$1e +7862.3438 869.7344 moveto +P$1f +7866.7031 864.5938 moveto +P$1k +7870.625 866.4531 moveto +P$1b +7870.625 863.8906 moveto +P$1c +7876.1719 867.2031 moveto +P$1l +7876.1719 866.2969 moveto +P$1m +7887.0938 869.0469 moveto +P$1d +7888.4688 864.2656 moveto +P$1p +7899.6094 869.7188 moveto +P$1i +7901.7656 869.2656 moveto +P$1j +7908.4375 867.4531 moveto +P$1y +7913.9531 869.6563 moveto +P$2g +7915.0313 872.2031 moveto +P$2h +7923.25 869.4688 moveto +P$1r +7922.1719 869.1406 moveto +P$1s +7926.7031 864.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7691.5 884 moveto +240 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7691.5 892 moveto +240 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +67 48 6604.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +66 47 6605.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +65 46 6605.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +64 45 6606.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +63 44 6606.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +62 43 6607.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +61 42 6607.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +60 41 6608.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +59 40 6608.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +67 48 6600.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +67 48 6600.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6615.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6615.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6618.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6630.9219 864.2656 moveto +P$26 +6638.1094 866.4531 moveto +P$2f +6650.5 869.4688 moveto +P$1r +6649.4219 869.1406 moveto +P$1s +6658.3438 869.0469 moveto +P$1d +6661.9531 864.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6601.75 884 moveto +65 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6601.75 892 moveto +65 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +83 48 6242.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +82 47 6243.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +81 46 6243.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +80 45 6244.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +79 44 6244.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +78 43 6245.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +77 42 6245.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +76 41 6246.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +75 40 6246.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +83 48 6238.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +83 48 6238.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6253.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6253.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6256.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6268.9219 724.2656 moveto +P$2s +6278.8594 725.4375 moveto +P$16 +6278.1875 724.2656 moveto +P$17 +6287.4844 725.0625 moveto +P$20 +6289.1406 732.8594 moveto +P$2w +6292.9219 724.2656 moveto +P$2i +6296.9531 724.5938 moveto +P$1k +6306.5 729.4688 moveto +P$1r +6305.4219 729.1406 moveto +P$1s +6313.9844 727.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6239.75 744 moveto +81 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6239.75 752 moveto +81 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +130 48 6077 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +129 47 6077.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +128 46 6078 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +127 45 6078.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +126 44 6079 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +125 43 6079.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +124 42 6080 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +123 41 6080.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +122 40 6081 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +130 48 6073 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +130 48 6073 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6088 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6088 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6090.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6103.1719 724.2656 moveto +P$2s +6110.125 726.4531 moveto +P$1b +6110.125 723.8906 moveto +P$1c +6113.125 723.8906 moveto +P$1g +6121.75 729.4688 moveto +P$1r +6120.6719 729.1406 moveto +P$1s +6129.4219 724.5469 moveto +P$1z +6133.2031 724.5938 moveto +P$1k +6139.6719 727.2031 moveto +P$1l +6139.6719 726.2969 moveto +P$1m +6148.9375 727.4531 moveto +P$1y +6153.1094 729.7188 moveto +P$1i +6155.2656 729.2656 moveto +P$1j +6162.4531 729.6563 moveto +P$2g +6163.5313 732.2031 moveto +P$2h +6171.75 729.4688 moveto +P$1r +6170.6719 729.1406 moveto +P$1s +6174.1719 724.2656 moveto +P$2i +6178.2031 724.5938 moveto +P$1k +6187.75 729.4688 moveto +P$1r +6186.6719 729.1406 moveto +P$1s +6195.2344 727.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6074 744 moveto +128 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6074 752 moveto +128 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +131 48 4861.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +130 47 4862.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +129 46 4862.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +128 45 4863.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +127 44 4863.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +126 43 4864.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +125 42 4864.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +124 41 4865.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +123 40 4865.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +131 48 4857.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +131 48 4857.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +4872.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4872.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4875.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4893.8906 731.7656 moveto +P$25 +4902.5 729.4688 moveto +P$1r +4901.4219 729.1406 moveto +P$1s +4910.3438 729.0469 moveto +P$1d +4918.5 729.4688 moveto +P$1r +4917.4219 729.1406 moveto +P$1s +4924.6875 727.4531 moveto +P$1y +4925.875 726.4531 moveto +P$1b +4925.875 723.8906 moveto +P$1c +4933.6094 726.7031 moveto +P$1h +4938.8594 725.4375 moveto +P$16 +4938.1875 724.2656 moveto +P$17 +4948.2031 727.4531 moveto +P$18 +4944.5313 729.7344 moveto +P$19 +4956.2031 727.4531 moveto +P$18 +4952.5313 729.7344 moveto +P$19 +4963.6875 727.4531 moveto +P$1y +4970.5 729.4688 moveto +P$1r +4969.4219 729.1406 moveto +P$1s +4977.0625 726.6406 moveto +P$1o +4984.0625 726.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4858.75 744 moveto +129 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4858.75 752 moveto +129 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +174 48 6774 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +173 47 6774.5 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +172 46 6775 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +171 45 6775.5 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +170 44 6776 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +169 43 6776.5 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +168 42 6777 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +167 41 6777.5 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +166 40 6778 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +174 48 6770 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +174 48 6770 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6785 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6785 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6787.9688 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6806.1406 1011.7656 moveto +P$25 +6814.75 1009.4688 moveto +P$1r +6813.6719 1009.1406 moveto +P$1s +6822.5938 1009.0469 moveto +P$1d +6830.75 1009.4688 moveto +P$1r +6829.6719 1009.1406 moveto +P$1s +6836.9375 1007.4531 moveto +P$1y +6838.125 1006.4531 moveto +P$1b +6838.125 1003.8906 moveto +P$1c +6845.8594 1006.7031 moveto +P$1h +6851.1094 1005.4375 moveto +P$16 +6850.4375 1004.2656 moveto +P$17 +6860.4531 1007.4531 moveto +P$18 +6856.7813 1009.7344 moveto +P$19 +6868.4531 1007.4531 moveto +P$18 +6864.7813 1009.7344 moveto +P$19 +6875.9375 1007.4531 moveto +P$1y +6882.75 1009.4688 moveto +P$1r +6881.6719 1009.1406 moveto +P$1s +6889.3125 1006.6406 moveto +P$1o +6896.3125 1006.6406 moveto +P$1o +6900.3594 1008.8438 moveto +P$1t +6900.3594 1005.2344 moveto +P$1u +6899.1719 1004.2656 moveto +P$1v +6907.0156 1010.4219 moveto +P$1w +6909.7344 1006.2969 moveto +P$1x +6920.5938 1009.0469 moveto +P$1d +6927.4531 1007.4531 moveto +P$18 +6923.7813 1009.7344 moveto +P$19 +6931.125 1003.8906 moveto +P$1g +6939.75 1009.4688 moveto +P$1r +6938.6719 1009.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6771 1024 moveto +172 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6771 1032 moveto +172 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +119 48 6524.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +118 47 6525.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +117 46 6525.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +116 45 6526.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +115 44 6526.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +114 43 6527.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +113 42 6527.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +112 41 6528.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +111 40 6528.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +119 48 6520.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +119 48 6520.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6535.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6535.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6538.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6556.8906 731.7656 moveto +P$25 +6565.5 729.4688 moveto +P$1r +6564.4219 729.1406 moveto +P$1s +6573.3438 729.0469 moveto +P$1d +6581.5 729.4688 moveto +P$1r +6580.4219 729.1406 moveto +P$1s +6587.6875 727.4531 moveto +P$1y +6588.875 726.4531 moveto +P$1b +6588.875 723.8906 moveto +P$1c +6596.6094 726.7031 moveto +P$1h +6601.8594 725.4375 moveto +P$16 +6601.1875 724.2656 moveto +P$17 +6610.6875 727.4531 moveto +P$1y +6612.9531 724.5938 moveto +P$1k +6616.875 726.4531 moveto +P$1b +6616.875 723.8906 moveto +P$1c +6624.6094 726.7031 moveto +P$1h +6626.875 723.8906 moveto +P$1g +6635.5 729.4688 moveto +P$1r +6634.4219 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6521.75 744 moveto +117 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6521.75 752 moveto +117 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +129 48 6360.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +128 47 6361.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +127 46 6361.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +126 45 6362.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +125 44 6362.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +124 43 6363.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +123 42 6363.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +122 41 6364.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +121 40 6364.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +129 48 6356.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +129 48 6356.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6371.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6371.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6374.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6392.8906 731.7656 moveto +P$25 +6401.5 729.4688 moveto +P$1r +6400.4219 729.1406 moveto +P$1s +6409.3438 729.0469 moveto +P$1d +6417.5 729.4688 moveto +P$1r +6416.4219 729.1406 moveto +P$1s +6423.6875 727.4531 moveto +P$1y +6424.875 726.4531 moveto +P$1b +6424.875 723.8906 moveto +P$1c +6432.6094 726.7031 moveto +P$1h +6441.4844 724.9375 moveto +P$14 +6445.4219 727.2031 moveto +P$1l +6445.4219 726.2969 moveto +P$1m +6456.3438 729.0469 moveto +P$1d +6459.9531 724.5938 moveto +P$1k +6466.8594 729.7188 moveto +P$1i +6469.0156 729.2656 moveto +P$1j +6476.6094 726.7031 moveto +P$1h +6479.9531 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6357.75 744 moveto +127 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6357.75 752 moveto +127 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +172 48 4830 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +171 47 4830.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +170 46 4831 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +169 45 4831.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +168 44 4832 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +167 43 4832.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +166 42 4833 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +165 41 4833.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +164 40 4834 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +172 48 4826 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +172 48 4826 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +4841 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4841 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4843.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4862.1406 871.7656 moveto +P$25 +4870.75 869.4688 moveto +P$1r +4869.6719 869.1406 moveto +P$1s +4878.5938 869.0469 moveto +P$1d +4886.75 869.4688 moveto +P$1r +4885.6719 869.1406 moveto +P$1s +4892.9375 867.4531 moveto +P$1y +4894.125 866.4531 moveto +P$1b +4894.125 863.8906 moveto +P$1c +4901.8594 866.7031 moveto +P$1h +4910.7344 864.9375 moveto +P$14 +4914.6719 867.2031 moveto +P$1l +4914.6719 866.2969 moveto +P$1m +4925.5938 869.0469 moveto +P$1d +4929.2031 864.5938 moveto +P$1k +4936.1094 869.7188 moveto +P$1i +4938.2656 869.2656 moveto +P$1j +4945.8594 866.7031 moveto +P$1h +4949.2031 864.5938 moveto +P$1k +4954.3594 868.8438 moveto +P$1t +4954.3594 865.2344 moveto +P$1u +4953.1719 864.2656 moveto +P$1v +4961.0156 870.4219 moveto +P$1w +4963.7344 866.2969 moveto +P$1x +4974.5938 869.0469 moveto +P$1d +4981.4531 867.4531 moveto +P$18 +4977.7813 869.7344 moveto +P$19 +4985.125 863.8906 moveto +P$1g +4993.75 869.4688 moveto +P$1r +4992.6719 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4827 884 moveto +170 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4827 892 moveto +170 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +161 48 6858.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +160 47 6859.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +159 46 6859.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +158 45 6860.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +157 44 6860.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +156 43 6861.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +155 42 6861.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +154 41 6862.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +153 40 6862.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +161 48 6854.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +161 48 6854.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6869.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6869.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6872.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6890.8906 871.7656 moveto +P$25 +6899.5 869.4688 moveto +P$1r +6898.4219 869.1406 moveto +P$1s +6907.3438 869.0469 moveto +P$1d +6915.5 869.4688 moveto +P$1r +6914.4219 869.1406 moveto +P$1s +6921.6875 867.4531 moveto +P$1y +6922.875 866.4531 moveto +P$1b +6922.875 863.8906 moveto +P$1c +6930.6094 866.7031 moveto +P$1h +6939.4844 864.9375 moveto +P$14 +6943.4219 867.2031 moveto +P$1l +6943.4219 866.2969 moveto +P$1m +6954.3438 869.0469 moveto +P$1d +6957.9531 864.5938 moveto +P$1k +6964.8594 869.7188 moveto +P$1i +6967.0156 869.2656 moveto +P$1j +6974.6094 866.7031 moveto +P$1h +6977.9531 864.5938 moveto +P$1k +6981.9219 864.2656 moveto +P$26 +6995.3438 869.0469 moveto +P$1d +6998.9531 864.5938 moveto +P$1k +7006.6875 867.4531 moveto +P$1y +7010.6094 873.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6855.75 884 moveto +159 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6855.75 892 moveto +159 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +237 48 4589.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +236 47 4590.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +235 46 4590.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +234 45 4591.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +233 44 4591.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +232 43 4592.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +231 42 4592.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +230 41 4593.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +229 40 4593.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +237 48 4585.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +237 48 4585.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +4600.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4600.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4603.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4621.8906 731.7656 moveto +P$25 +4630.5 729.4688 moveto +P$1r +4629.4219 729.1406 moveto +P$1s +4638.3438 729.0469 moveto +P$1d +4646.5 729.4688 moveto +P$1r +4645.4219 729.1406 moveto +P$1s +4652.6875 727.4531 moveto +P$1y +4653.875 726.4531 moveto +P$1b +4653.875 723.8906 moveto +P$1c +4661.6094 726.7031 moveto +P$1h +4667.4844 725.0625 moveto +P$20 +4667.4844 724.1094 moveto +P$21 +4676.6875 727.4531 moveto +P$1y +4682.2031 729.6563 moveto +P$2g +4683.2813 732.2031 moveto +P$2h +4688.8594 729.7188 moveto +P$1i +4691.0156 729.2656 moveto +P$1j +4699.3438 729.0469 moveto +P$1d +4701.875 726.4531 moveto +P$1b +4701.875 723.8906 moveto +P$1c +4704.4063 726.4531 moveto +P$2k +4712.8594 729.7188 moveto +P$1i +4715.0156 729.2656 moveto +P$1j +4718.9531 724.5938 moveto +P$1k +4722.875 726.4531 moveto +P$1b +4722.875 723.8906 moveto +P$1c +4728.4219 727.2031 moveto +P$1l +4728.4219 726.2969 moveto +P$1m +4739.3438 729.0469 moveto +P$1d +4744.8594 729.7188 moveto +P$1i +4747.0156 729.2656 moveto +P$1j +4749.875 723.8906 moveto +P$1g +4752.7969 724.2656 moveto +P$24 +4767.3438 729.0469 moveto +P$1d +4769.875 726.4531 moveto +P$1b +4769.875 723.8906 moveto +P$1c +4773.9531 724.5938 moveto +P$1k +4779.1094 728.8438 moveto +P$1t +4779.1094 725.2344 moveto +P$1u +4777.9219 724.2656 moveto +P$1v +4785.7656 730.4219 moveto +P$1w +4788.4844 726.2969 moveto +P$1x +4799.3438 729.0469 moveto +P$1d +4806.2031 727.4531 moveto +P$18 +4802.5313 729.7344 moveto +P$19 +4809.875 723.8906 moveto +P$1g +4818.5 729.4688 moveto +P$1r +4817.4219 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4586.75 744 moveto +235 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4586.75 752 moveto +235 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +124 48 7053.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +123 47 7054 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +122 46 7054.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +121 45 7055 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +120 44 7055.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +119 43 7056 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +118 42 7056.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +117 41 7057 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +116 40 7057.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +124 48 7049.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +124 48 7049.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7064.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7064.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7067.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7085.6406 731.7656 moveto +P$25 +7094.25 729.4688 moveto +P$1r +7093.1719 729.1406 moveto +P$1s +7102.0938 729.0469 moveto +P$1d +7110.25 729.4688 moveto +P$1r +7109.1719 729.1406 moveto +P$1s +7116.4375 727.4531 moveto +P$1y +7117.625 726.4531 moveto +P$1b +7117.625 723.8906 moveto +P$1c +7125.3594 726.7031 moveto +P$1h +7128.8594 725.2344 moveto +P$27 +7127.6719 724.2656 moveto +P$28 +7141.25 729.4688 moveto +P$1r +7140.1719 729.1406 moveto +P$1s +7147.4375 727.4531 moveto +P$1y +7152.8125 726.6406 moveto +P$1o +7158.1719 727.2031 moveto +P$1l +7158.1719 726.2969 moveto +P$1m +7169.0938 729.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7050.5 744 moveto +122 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7050.5 752 moveto +122 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +167 48 5067.75 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +166 47 5068.25 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +165 46 5068.75 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +164 45 5069.25 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +163 44 5069.75 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +162 43 5070.25 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +161 42 5070.75 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +160 41 5071.25 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +159 40 5071.75 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +167 48 5063.75 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +167 48 5063.75 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5078.75 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5078.75 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5081.7188 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5099.8906 1011.7656 moveto +P$25 +5108.5 1009.4688 moveto +P$1r +5107.4219 1009.1406 moveto +P$1s +5116.3438 1009.0469 moveto +P$1d +5124.5 1009.4688 moveto +P$1r +5123.4219 1009.1406 moveto +P$1s +5130.6875 1007.4531 moveto +P$1y +5131.875 1006.4531 moveto +P$1b +5131.875 1003.8906 moveto +P$1c +5139.6094 1006.7031 moveto +P$1h +5143.1094 1005.2344 moveto +P$27 +5141.9219 1004.2656 moveto +P$28 +5155.5 1009.4688 moveto +P$1r +5154.4219 1009.1406 moveto +P$1s +5161.6875 1007.4531 moveto +P$1y +5167.0625 1006.6406 moveto +P$1o +5172.4219 1007.2031 moveto +P$1l +5172.4219 1006.2969 moveto +P$1m +5183.3438 1009.0469 moveto +P$1d +5187.1094 1008.8438 moveto +P$1t +5187.1094 1005.2344 moveto +P$1u +5185.9219 1004.2656 moveto +P$1v +5193.7656 1010.4219 moveto +P$1w +5196.4844 1006.2969 moveto +P$1x +5207.3438 1009.0469 moveto +P$1d +5214.2031 1007.4531 moveto +P$18 +5210.5313 1009.7344 moveto +P$19 +5217.875 1003.8906 moveto +P$1g +5226.5 1009.4688 moveto +P$1r +5225.4219 1009.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5064.75 1024 moveto +165 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5064.75 1032 moveto +165 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +112 48 7993.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +111 47 7994 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +110 46 7994.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +109 45 7995 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +108 44 7995.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +107 43 7996 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +106 42 7996.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +105 41 7997 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +104 40 7997.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +112 48 7989.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +112 48 7989.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8004.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8004.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8007.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8025.6406 731.7656 moveto +P$25 +8028.625 723.8906 moveto +P$1g +8034.1719 727.2031 moveto +P$1l +8034.1719 726.2969 moveto +P$1m +8043.8125 726.6406 moveto +P$1o +8050.8125 726.6406 moveto +P$1o +8056.6094 729.7188 moveto +P$1i +8058.7656 729.2656 moveto +P$1j +8065.4375 727.4531 moveto +P$1y +8069.3594 733.625 moveto +P$1q +8072.6719 724.2656 moveto +P$2i +8076.7031 724.5938 moveto +P$1k +8086.25 729.4688 moveto +P$1r +8085.1719 729.1406 moveto +P$1s +8093.7344 727.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7990.5 744 moveto +110 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7990.5 752 moveto +110 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +109 48 7054.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +108 47 7055.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +107 46 7055.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +106 45 7056.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +105 44 7056.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +104 43 7057.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +103 42 7057.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +102 41 7058.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +101 40 7058.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +109 48 7050.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +109 48 7050.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7065.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7065.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7068.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7080.9219 864.2656 moveto +P$1n +7089.875 866.4531 moveto +P$1b +7089.875 863.8906 moveto +P$1c +7097.0625 866.6406 moveto +P$1o +7100.9531 864.5938 moveto +P$1k +7107.4219 867.2031 moveto +P$1l +7107.4219 866.2969 moveto +P$1m +7116.6875 867.4531 moveto +P$1y +7117.875 866.4531 moveto +P$1b +7117.875 863.8906 moveto +P$1c +7125.6094 866.7031 moveto +P$1h +7129.1094 865.2344 moveto +P$2p +7127.9219 864.2656 moveto +P$2q +7139.8594 869.7188 moveto +P$1i +7142.0156 869.2656 moveto +P$1j +7145.9531 864.5938 moveto +P$1k +7155.5 869.4688 moveto +P$1r +7154.4219 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7051.75 884 moveto +107 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7051.75 892 moveto +107 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +70 48 7699 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +69 47 7699.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +68 46 7700 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +67 45 7700.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +66 44 7701 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +65 43 7701.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +64 42 7702 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +63 41 7702.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +62 40 7703 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +70 48 7695 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +70 48 7695 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7710 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7710 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7712.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7725.1719 724.2656 moveto +P$2i +7733.2344 727.7188 moveto +P$1a +7742.1094 729.7188 moveto +P$1i +7744.2656 729.2656 moveto +P$1j +7751.4531 729.6563 moveto +P$2g +7752.5313 732.2031 moveto +P$2h +7760.75 729.4688 moveto +P$1r +7759.6719 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7696 744 moveto +68 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7696 752 moveto +68 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +89 48 7574.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +88 47 7575.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +87 46 7575.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +86 45 7576.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +85 44 7576.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +84 43 7577.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +83 42 7577.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +82 41 7578.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +81 40 7578.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +89 48 7570.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +89 48 7570.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7585.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7585.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7588.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7600.9219 724.2656 moveto +P$2i +7609.3438 729.0469 moveto +P$1d +7611.875 723.8906 moveto +P$1g +7614.875 726.4531 moveto +P$1b +7614.875 723.8906 moveto +P$1c +7623.3438 729.0469 moveto +P$1d +7631.5 729.4688 moveto +P$1r +7630.4219 729.1406 moveto +P$1s +7639.1719 724.5469 moveto +P$1z +7641.875 726.4531 moveto +P$1b +7641.875 723.8906 moveto +P$1c +7645.9531 724.5938 moveto +P$1k +7655.5 729.4688 moveto +P$1r +7654.4219 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7571.75 744 moveto +87 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7571.75 752 moveto +87 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +98 48 5770.5 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +97 47 5771 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +96 46 5771.5 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +95 45 5772 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +94 44 5772.5 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +93 43 5773 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +92 42 5773.5 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +91 41 5774 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +90 40 5774.5 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +98 48 5766.5 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +98 48 5766.5 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5781.5 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5781.5 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5784.4688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5796.6719 864.2656 moveto +P$2i +5803.8125 866.6406 moveto +P$1o +5809.1719 867.2031 moveto +P$1l +5809.1719 866.2969 moveto +P$1m +5821.2344 864.9375 moveto +P$14 +5825.1719 867.2031 moveto +P$1l +5825.1719 866.2969 moveto +P$1m +5830.5156 870.4219 moveto +P$1w +5833.2344 866.2969 moveto +P$1x +5844.0938 869.0469 moveto +P$1d +5847.7031 864.5938 moveto +P$1k +5855.4375 867.4531 moveto +P$1y +5859.3594 873.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5767.5 884 moveto +96 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5767.5 892 moveto +96 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +51 48 7488.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +50 47 7489.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +49 46 7489.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +48 45 7490.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +47 44 7490.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +46 43 7491.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +45 42 7491.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +44 41 7492.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +43 40 7492.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +51 48 7484.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +51 48 7484.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7499.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7499.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7502.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7514.9219 724.2656 moveto +P$2u +7520.4219 727.2031 moveto +P$1l +7520.4219 726.2969 moveto +P$1m +7530.5938 729.7344 moveto +P$1f +7526.9219 727.4531 moveto +P$22 +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7485.75 744 moveto +49 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7485.75 752 moveto +49 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +105 48 7198.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +104 47 7199.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +103 46 7199.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +102 45 7200.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +101 44 7200.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +100 43 7201.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +99 42 7201.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +98 41 7202.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +97 40 7202.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +105 48 7194.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +105 48 7194.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7209.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7209.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7212.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7224.9219 864.2656 moveto +P$2j +7236.5 869.4688 moveto +P$1r +7235.4219 869.1406 moveto +P$1s +7243.2031 869.6563 moveto +P$2g +7244.2813 872.2031 moveto +P$2h +7249.8594 869.7188 moveto +P$1i +7252.0156 869.2656 moveto +P$1j +7254.875 863.8906 moveto +P$1g +7257.9219 864.2656 moveto +P$29 +7269.4219 867.2031 moveto +P$1l +7269.4219 866.2969 moveto +P$1m +7275.9531 864.5938 moveto +P$1k +7279.875 866.4531 moveto +P$1b +7279.875 863.8906 moveto +P$1c +7287.6094 866.7031 moveto +P$1h +7295.5 869.4688 moveto +P$1r +7294.4219 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7195.75 884 moveto +103 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7195.75 892 moveto +103 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +82 48 7577 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +81 47 7577.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +80 46 7578 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +79 45 7578.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +78 44 7579 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +77 43 7579.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +76 42 7580 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +75 41 7580.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +74 40 7581 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +82 48 7573 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +82 48 7573 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7588 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7588 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7590.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7603.1719 864.2656 moveto +P$2m +7618.75 869.4688 moveto +P$1r +7617.6719 869.1406 moveto +P$1s +7626.2344 867.7188 moveto +P$1a +7636.8438 869.7344 moveto +P$1f +7633.1719 867.4531 moveto +P$22 +7645.75 869.4688 moveto +P$1r +7644.6719 869.1406 moveto +P$1s +7651.9375 867.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7574 884 moveto +80 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7574 892 moveto +80 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +81 48 6266.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +80 47 6267.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +79 46 6267.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +78 45 6268.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +77 44 6268.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +76 43 6269.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +75 42 6269.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +74 41 6270.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +73 40 6270.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +81 48 6262.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +81 48 6262.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6277.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6277.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6280.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6292.9219 864.2656 moveto +P$2m +6302.875 866.4531 moveto +P$1b +6302.875 863.8906 moveto +P$1c +6311.3438 869.0469 moveto +P$1d +6313.7656 870.4219 moveto +P$1w +6316.4844 866.2969 moveto +P$1x +6322.9531 864.5938 moveto +P$1k +6332.5 869.4688 moveto +P$1r +6331.4219 869.1406 moveto +P$1s +6339.0625 866.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6263.75 884 moveto +79 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6263.75 892 moveto +79 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +94 48 7359 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +93 47 7359.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +92 46 7360 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +91 45 7360.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +90 44 7361 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +89 43 7361.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +88 42 7362 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +87 41 7362.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +86 40 7363 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +94 48 7355 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +94 48 7355 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7370 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7370 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7372.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7385.1719 724.2656 moveto +P$2m +7398.7344 725.0625 moveto +P$20 +7398.7344 724.1094 moveto +P$21 +7402.9688 724.2656 moveto +P$1p +7412.3594 725.2344 moveto +P$2p +7411.1719 724.2656 moveto +P$2q +7420.1719 724.2656 moveto +P$2i +7424.2031 724.5938 moveto +P$1k +7433.75 729.4688 moveto +P$1r +7432.6719 729.1406 moveto +P$1s +7441.2344 727.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7356 744 moveto +92 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7356 752 moveto +92 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +126 48 5569 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +125 47 5569.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +124 46 5570 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +123 45 5570.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +122 44 5571 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +121 43 5571.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +120 42 5572 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +119 41 5572.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +118 40 5573 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +126 48 5565 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +126 48 5565 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5580 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5580 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5582.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5595.1719 724.2656 moveto +P$2m +5605.0156 730.4219 moveto +P$1w +5607.7344 726.2969 moveto +P$1x +5613.125 723.8906 moveto +P$1g +5617.2031 724.5938 moveto +P$1k +5621.125 726.4531 moveto +P$1b +5621.125 723.8906 moveto +P$1c +5625.3594 725.2344 moveto +P$27 +5624.1719 724.2656 moveto +P$28 +5635.1094 729.7188 moveto +P$1i +5637.2656 729.2656 moveto +P$1j +5643.9375 727.4531 moveto +P$1y +5646.2031 724.5938 moveto +P$1k +5653.1094 725.4375 moveto +P$16 +5652.4375 724.2656 moveto +P$17 +5661.9375 727.4531 moveto +P$1y +5664.2031 724.5938 moveto +P$1k +5668.125 726.4531 moveto +P$1b +5668.125 723.8906 moveto +P$1c +5675.8594 726.7031 moveto +P$1h +5678.125 723.8906 moveto +P$1g +5686.75 729.4688 moveto +P$1r +5685.6719 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5566 744 moveto +124 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5566 752 moveto +124 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +92 48 7339 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +91 47 7339.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +90 46 7340 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +89 45 7340.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +88 44 7341 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +87 43 7341.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +86 42 7342 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +85 41 7342.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +84 40 7343 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +92 48 7335 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +92 48 7335 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7350 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7350 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7352.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7365.1719 864.2656 moveto +P$29 +7379.75 869.4688 moveto +P$1r +7378.6719 869.1406 moveto +P$1s +7381.5 866.4531 moveto +P$2r +7395.3125 866.6406 moveto +P$1o +7398.1719 864.2656 moveto +P$2i +7402.2031 864.5938 moveto +P$1k +7411.75 869.4688 moveto +P$1r +7410.6719 869.1406 moveto +P$1s +7419.2344 867.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7336 884 moveto +90 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7336 892 moveto +90 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +110 48 5424 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +109 47 5424.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +108 46 5425 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +107 45 5425.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +106 44 5426 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +105 43 5426.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +104 42 5427 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +103 41 5427.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +102 40 5428 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +110 48 5420 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +110 48 5420 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5435 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5435 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5437.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5453.7344 725.0625 moveto +P$20 +5453.7344 724.1094 moveto +P$21 +5462.9375 727.4531 moveto +P$1y +5468.4531 729.6563 moveto +P$2g +5469.5313 732.2031 moveto +P$2h +5475.1094 729.7188 moveto +P$1i +5477.2656 729.2656 moveto +P$1j +5485.5938 729.0469 moveto +P$1d +5488.125 726.4531 moveto +P$1b +5488.125 723.8906 moveto +P$1c +5490.6563 726.4531 moveto +P$2k +5499.1094 729.7188 moveto +P$1i +5501.2656 729.2656 moveto +P$1j +5505.2031 724.5938 moveto +P$1k +5509.125 726.4531 moveto +P$1b +5509.125 723.8906 moveto +P$1c +5514.6719 727.2031 moveto +P$1l +5514.6719 726.2969 moveto +P$1m +5525.5938 729.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5421 744 moveto +108 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5421 752 moveto +108 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +76 48 7466 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +75 47 7466.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +74 46 7467 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +73 45 7467.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +72 44 7468 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +71 43 7468.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +70 42 7469 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +69 41 7469.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +68 40 7470 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +76 48 7462 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +76 48 7462 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7477 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7477 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7479.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7493.3594 865.2344 moveto +P$27 +7492.1719 864.2656 moveto +P$28 +7505.75 869.4688 moveto +P$1r +7504.6719 869.1406 moveto +P$1s +7511.9375 867.4531 moveto +P$1y +7517.3125 866.6406 moveto +P$1o +7522.6719 867.2031 moveto +P$1l +7522.6719 866.2969 moveto +P$1m +7533.5938 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7463 884 moveto +74 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7463 892 moveto +74 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +117 48 6706.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +116 47 6707.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +115 46 6707.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +114 45 6708.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +113 44 6708.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +112 43 6709.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +111 42 6709.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +110 41 6710.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +109 40 6710.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +117 48 6702.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +117 48 6702.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6717.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6717.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6720.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6734.1094 865.2344 moveto +P$27 +6732.9219 864.2656 moveto +P$28 +6744.6875 867.4531 moveto +P$1y +6751.5 869.4688 moveto +P$1r +6750.4219 869.1406 moveto +P$1s +6758.0625 866.6406 moveto +P$1o +6765.0625 866.6406 moveto +P$1o +6772.0781 868.9063 moveto +P$2a +6769.1094 865.2344 moveto +P$2b +6781.5 869.4688 moveto +P$1r +6780.4219 869.1406 moveto +P$1s +6783.875 863.8906 moveto +P$1g +6792.5 869.4688 moveto +P$1r +6791.4219 869.1406 moveto +P$1s +6797.8594 869.7188 moveto +P$1i +6800.0156 869.2656 moveto +P$1j +6807.0625 866.6406 moveto +P$1o +6815.5 869.4688 moveto +P$1r +6814.4219 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6703.75 884 moveto +115 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6703.75 892 moveto +115 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +163 48 5878.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +162 47 5879.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +161 46 5879.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +160 45 5880.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +159 44 5880.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +158 43 5881.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +157 42 5881.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +156 41 5882.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +155 40 5882.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +163 48 5874.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +163 48 5874.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5889.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5889.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5892.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5906.1094 725.2344 moveto +P$27 +5904.9219 724.2656 moveto +P$28 +5912.7656 730.4219 moveto +P$1w +5915.4844 726.2969 moveto +P$1x +5925.5938 729.7344 moveto +P$1f +5921.9219 727.4531 moveto +P$22 +5928.875 723.8906 moveto +P$1g +5931.875 726.4531 moveto +P$1b +5931.875 723.8906 moveto +P$1c +5939.6094 726.7031 moveto +P$1h +5943.1094 725.2344 moveto +P$27 +5941.9219 724.2656 moveto +P$28 +5955.5 729.4688 moveto +P$1r +5954.4219 729.1406 moveto +P$1s +5961.6875 727.4531 moveto +P$1y +5967.0625 726.6406 moveto +P$1o +5972.4219 727.2031 moveto +P$1l +5972.4219 726.2969 moveto +P$1m +5983.3438 729.0469 moveto +P$1d +5988.8594 729.7188 moveto +P$1i +5991.0156 729.2656 moveto +P$1j +5993.875 723.8906 moveto +P$1g +5998.1094 725.2344 moveto +P$27 +5996.9219 724.2656 moveto +P$28 +6008.6875 727.4531 moveto +P$1y +6012.4219 727.2031 moveto +P$1l +6012.4219 726.2969 moveto +P$1m +6021.2031 723.8906 moveto +P$2o +6021.875 726.4531 moveto +P$1b +6021.875 723.8906 moveto +P$1c +6024.875 723.8906 moveto +P$1g +6033.5 729.4688 moveto +P$1r +6032.4219 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5875.75 744 moveto +161 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5875.75 752 moveto +161 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +206 48 4589 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +205 47 4589.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +204 46 4590 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +203 45 4590.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +202 44 4591 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +201 43 4591.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +200 42 4592 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +199 41 4592.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +198 40 4593 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +206 48 4585 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +206 48 4585 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +4600 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4600 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4602.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4616.3594 865.2344 moveto +P$27 +4615.1719 864.2656 moveto +P$28 +4623.0156 870.4219 moveto +P$1w +4625.7344 866.2969 moveto +P$1x +4635.8438 869.7344 moveto +P$1f +4632.1719 867.4531 moveto +P$22 +4639.125 863.8906 moveto +P$1g +4642.125 866.4531 moveto +P$1b +4642.125 863.8906 moveto +P$1c +4649.8594 866.7031 moveto +P$1h +4653.3594 865.2344 moveto +P$27 +4652.1719 864.2656 moveto +P$28 +4665.75 869.4688 moveto +P$1r +4664.6719 869.1406 moveto +P$1s +4671.9375 867.4531 moveto +P$1y +4677.3125 866.6406 moveto +P$1o +4682.6719 867.2031 moveto +P$1l +4682.6719 866.2969 moveto +P$1m +4693.5938 869.0469 moveto +P$1d +4699.1094 869.7188 moveto +P$1i +4701.2656 869.2656 moveto +P$1j +4704.125 863.8906 moveto +P$1g +4708.3594 865.2344 moveto +P$27 +4707.1719 864.2656 moveto +P$28 +4718.9375 867.4531 moveto +P$1y +4722.6719 867.2031 moveto +P$1l +4722.6719 866.2969 moveto +P$1m +4731.4531 863.8906 moveto +P$2o +4732.125 866.4531 moveto +P$1b +4732.125 863.8906 moveto +P$1c +4735.125 863.8906 moveto +P$1g +4743.75 869.4688 moveto +P$1r +4742.6719 869.1406 moveto +P$1s +4747.3594 868.8438 moveto +P$1t +4747.3594 865.2344 moveto +P$1u +4746.1719 864.2656 moveto +P$1v +4754.0156 870.4219 moveto +P$1w +4756.7344 866.2969 moveto +P$1x +4767.5938 869.0469 moveto +P$1d +4774.4531 867.4531 moveto +P$18 +4770.7813 869.7344 moveto +P$19 +4778.125 863.8906 moveto +P$1g +4786.75 869.4688 moveto +P$1r +4785.6719 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4586 884 moveto +204 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4586 892 moveto +204 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +213 48 5902.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +212 47 5903.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +211 46 5903.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +210 45 5904.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +209 44 5904.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +208 43 5905.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +207 42 5905.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +206 41 5906.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +205 40 5906.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +213 48 5898.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +213 48 5898.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5913.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5913.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5916.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5930.1094 865.2344 moveto +P$27 +5928.9219 864.2656 moveto +P$28 +5936.7656 870.4219 moveto +P$1w +5939.4844 866.2969 moveto +P$1x +5949.5938 869.7344 moveto +P$1f +5945.9219 867.4531 moveto +P$22 +5952.875 863.8906 moveto +P$1g +5955.875 866.4531 moveto +P$1b +5955.875 863.8906 moveto +P$1c +5963.6094 866.7031 moveto +P$1h +5967.1094 865.2344 moveto +P$27 +5965.9219 864.2656 moveto +P$28 +5979.5 869.4688 moveto +P$1r +5978.4219 869.1406 moveto +P$1s +5985.6875 867.4531 moveto +P$1y +5991.0625 866.6406 moveto +P$1o +5996.4219 867.2031 moveto +P$1l +5996.4219 866.2969 moveto +P$1m +6007.3438 869.0469 moveto +P$1d +6012.8594 869.7188 moveto +P$1i +6015.0156 869.2656 moveto +P$1j +6017.875 863.8906 moveto +P$1g +6022.1094 865.2344 moveto +P$27 +6020.9219 864.2656 moveto +P$28 +6032.6875 867.4531 moveto +P$1y +6036.4219 867.2031 moveto +P$1l +6036.4219 866.2969 moveto +P$1m +6045.2031 863.8906 moveto +P$2o +6045.875 866.4531 moveto +P$1b +6045.875 863.8906 moveto +P$1c +6048.875 863.8906 moveto +P$1g +6057.5 869.4688 moveto +P$1r +6056.4219 869.1406 moveto +P$1s +6059.9219 864.2656 moveto +P$29 +6071.8594 869.7188 moveto +P$1i +6074.0156 869.2656 moveto +P$1j +6076.1094 866.4531 moveto +P$2f +6082.9219 864.2656 moveto +P$2i +6086.9531 864.5938 moveto +P$1k +6096.5 869.4688 moveto +P$1r +6095.4219 869.1406 moveto +P$1s +6103.9844 867.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5899.75 884 moveto +211 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5899.75 892 moveto +211 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +142 48 8478 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +141 47 8478.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +140 46 8479 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +139 45 8479.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +138 44 8480 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +137 43 8480.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +136 42 8481 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +135 41 8481.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +134 40 8482 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +142 48 8474 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +142 48 8474 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8489 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8489 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8491.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8508.3281 728.9063 moveto +P$2a +8505.3594 725.2344 moveto +P$2b +8517.75 729.4688 moveto +P$1r +8516.6719 729.1406 moveto +P$1s +8524.3125 726.6406 moveto +P$1o +8532.75 729.4688 moveto +P$1r +8531.6719 729.1406 moveto +P$1s +8538.1094 729.7188 moveto +P$1i +8540.2656 729.2656 moveto +P$1j +8546.9375 727.4531 moveto +P$1y +8552.8594 726.7031 moveto +P$1h +8560.5938 729.0469 moveto +P$2d +8563.1719 724.2656 moveto +P$29 +8577.75 729.4688 moveto +P$1r +8576.6719 729.1406 moveto +P$1s +8581.2031 724.5938 moveto +P$1k +8584.5 726.4531 moveto +P$2r +8596.6719 727.2031 moveto +P$1l +8596.6719 726.2969 moveto +P$1m +8605.9375 727.4531 moveto +P$1y +8607.0938 723.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8475 744 moveto +140 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8475 752 moveto +140 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +218 48 8878 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +217 47 8878.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +216 46 8879 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +215 45 8879.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +214 44 8880 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +213 43 8880.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +212 42 8881 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +211 41 8881.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +210 40 8882 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +218 48 8874 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +218 48 8874 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8889 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8889 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8891.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8908.3281 868.9063 moveto +P$2a +8905.3594 865.2344 moveto +P$2b +8917.75 869.4688 moveto +P$1r +8916.6719 869.1406 moveto +P$1s +8924.3125 866.6406 moveto +P$1o +8932.75 869.4688 moveto +P$1r +8931.6719 869.1406 moveto +P$1s +8938.1094 869.7188 moveto +P$1i +8940.2656 869.2656 moveto +P$1j +8946.9375 867.4531 moveto +P$1y +8952.8594 866.7031 moveto +P$1h +8960.5938 869.0469 moveto +P$2d +8963.1719 864.2656 moveto +P$29 +8977.75 869.4688 moveto +P$1r +8976.6719 869.1406 moveto +P$1s +8981.2031 864.5938 moveto +P$1k +8984.5 866.4531 moveto +P$2r +8996.6719 867.2031 moveto +P$1l +8996.6719 866.2969 moveto +P$1m +9005.9375 867.4531 moveto +P$1y +9007.0938 863.8906 moveto +P$2n +9014.1719 864.2656 moveto +P$2m +9029.75 869.4688 moveto +P$1r +9028.6719 869.1406 moveto +P$1s +9037.2344 867.7188 moveto +P$1a +9047.8438 869.7344 moveto +P$1f +9044.1719 867.4531 moveto +P$22 +9056.75 869.4688 moveto +P$1r +9055.6719 869.1406 moveto +P$1s +9062.9375 867.4531 moveto +P$1y +9068.3125 866.6406 moveto +P$1o +9076.5938 869.0469 moveto +P$2d +9079.125 866.4531 moveto +P$1b +9079.125 863.8906 moveto +P$1c +9083.1719 872.0313 moveto +P$1e +9086.8438 869.7344 moveto +P$1f +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8875 884 moveto +216 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8875 892 moveto +216 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +77 48 5311.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +76 47 5312.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +75 46 5312.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +74 45 5313.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +73 44 5313.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +72 43 5314.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +71 42 5314.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +70 41 5315.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +69 40 5315.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +77 48 5307.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +77 48 5307.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5322.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5322.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5325.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5343.1719 724.5469 moveto +P$1z +5351.5 729.4688 moveto +P$1r +5350.4219 729.1406 moveto +P$1s +5357.6875 727.4531 moveto +P$1y +5358.1094 726.4531 moveto +P$2f +5364.875 726.4531 moveto +P$1b +5364.875 723.8906 moveto +P$1c +5372.6094 726.7031 moveto +P$1h +5380.5 729.4688 moveto +P$1r +5379.4219 729.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5308.75 744 moveto +75 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5308.75 752 moveto +75 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +124 48 5152.5 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +123 47 5153 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +122 46 5153.5 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +121 45 5154 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +120 44 5154.5 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +119 43 5155 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +118 42 5155.5 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +117 41 5156 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +116 40 5156.5 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +124 48 5148.5 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +124 48 5148.5 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5163.5 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5163.5 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5166.4688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5183.9219 724.5469 moveto +P$1z +5186.625 726.4531 moveto +P$1b +5186.625 723.8906 moveto +P$1c +5194.7344 727.7188 moveto +P$1a +5201.6719 732.0313 moveto +P$1e +5205.3438 729.7344 moveto +P$1f +5208.625 723.8906 moveto +P$1g +5217.25 729.4688 moveto +P$1r +5216.1719 729.1406 moveto +P$1s +5222.6094 725.4375 moveto +P$16 +5221.9375 724.2656 moveto +P$17 +5231.9531 727.4531 moveto +P$18 +5228.2813 729.7344 moveto +P$19 +5239.9531 727.4531 moveto +P$18 +5236.2813 729.7344 moveto +P$19 +5247.4375 727.4531 moveto +P$1y +5254.25 729.4688 moveto +P$1r +5253.1719 729.1406 moveto +P$1s +5260.8125 726.6406 moveto +P$1o +5267.8125 726.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5149.5 744 moveto +122 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5149.5 752 moveto +122 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +151 48 8150.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +150 47 8151.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +149 46 8151.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +148 45 8152.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +147 44 8152.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +146 43 8153.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +145 42 8153.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +144 41 8154.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +143 40 8154.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +151 48 8146.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +151 48 8146.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8161.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8161.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8164.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8182.1719 864.5469 moveto +P$1z +8184.875 866.4531 moveto +P$1b +8184.875 863.8906 moveto +P$1c +8192.9844 867.7188 moveto +P$1a +8199.9219 872.0313 moveto +P$1e +8203.5938 869.7344 moveto +P$1f +8206.875 863.8906 moveto +P$1g +8215.5 869.4688 moveto +P$1r +8214.4219 869.1406 moveto +P$1s +8221.4844 865.0625 moveto +P$20 +8221.4844 864.1094 moveto +P$21 +8230.6875 867.4531 moveto +P$1y +8236.2031 869.6563 moveto +P$2g +8237.2813 872.2031 moveto +P$2h +8242.8594 869.7188 moveto +P$1i +8245.0156 869.2656 moveto +P$1j +8253.3438 869.0469 moveto +P$1d +8255.875 866.4531 moveto +P$1b +8255.875 863.8906 moveto +P$1c +8258.4063 866.4531 moveto +P$2k +8266.8594 869.7188 moveto +P$1i +8269.0156 869.2656 moveto +P$1j +8272.9531 864.5938 moveto +P$1k +8276.875 866.4531 moveto +P$1b +8276.875 863.8906 moveto +P$1c +8282.4219 867.2031 moveto +P$1l +8282.4219 866.2969 moveto +P$1m +8293.3438 869.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8147.75 884 moveto +149 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8147.75 892 moveto +149 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +194 48 5422.5 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +193 47 5423 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +192 46 5423.5 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +191 45 5424 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +190 44 5424.5 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +189 43 5425 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +188 42 5425.5 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +187 41 5426 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +186 40 5426.5 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +194 48 5418.5 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +194 48 5418.5 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5433.5 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5433.5 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5436.4688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5453.9219 864.5469 moveto +P$1z +5456.625 866.4531 moveto +P$1b +5456.625 863.8906 moveto +P$1c +5464.7344 867.7188 moveto +P$1a +5471.6719 872.0313 moveto +P$1e +5475.3438 869.7344 moveto +P$1f +5478.625 863.8906 moveto +P$1g +5487.25 869.4688 moveto +P$1r +5486.1719 869.1406 moveto +P$1s +5493.2344 865.0625 moveto +P$20 +5493.2344 864.1094 moveto +P$21 +5502.4375 867.4531 moveto +P$1y +5507.9531 869.6563 moveto +P$2g +5509.0313 872.2031 moveto +P$2h +5514.6094 869.7188 moveto +P$1i +5516.7656 869.2656 moveto +P$1j +5525.0938 869.0469 moveto +P$1d +5527.625 866.4531 moveto +P$1b +5527.625 863.8906 moveto +P$1c +5530.1563 866.4531 moveto +P$2k +5538.6094 869.7188 moveto +P$1i +5540.7656 869.2656 moveto +P$1j +5544.7031 864.5938 moveto +P$1k +5548.625 866.4531 moveto +P$1b +5548.625 863.8906 moveto +P$1c +5554.1719 867.2031 moveto +P$1l +5554.1719 866.2969 moveto +P$1m +5565.0938 869.0469 moveto +P$1d +5568.8594 868.8438 moveto +P$1t +5568.8594 865.2344 moveto +P$1u +5567.6719 864.2656 moveto +P$1v +5575.5156 870.4219 moveto +P$1w +5578.2344 866.2969 moveto +P$1x +5589.0938 869.0469 moveto +P$1d +5595.9531 867.4531 moveto +P$18 +5592.2813 869.7344 moveto +P$19 +5599.625 863.8906 moveto +P$1g +5608.25 869.4688 moveto +P$1r +5607.1719 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5419.5 884 moveto +192 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5419.5 892 moveto +192 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +89 48 5027.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +88 47 5028.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +87 46 5028.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +86 45 5029.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +85 44 5029.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +84 43 5030.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +83 42 5030.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +82 41 5031.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +81 40 5031.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +89 48 5023.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +89 48 5023.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5038.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5038.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5041.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5059.1719 724.5469 moveto +P$1z +5061.875 726.4531 moveto +P$1b +5061.875 723.8906 moveto +P$1c +5065.9531 724.5938 moveto +P$1k +5075.5 729.4688 moveto +P$1r +5074.4219 729.1406 moveto +P$1s +5079.1094 725.2344 moveto +P$27 +5077.9219 724.2656 moveto +P$28 +5089.6875 727.4531 moveto +P$1y +5093.4219 727.2031 moveto +P$1l +5093.4219 726.2969 moveto +P$1m +5104.3438 726.4531 moveto +P$2c +5107.6094 733.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5024.75 744 moveto +87 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5024.75 752 moveto +87 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +73 48 8369.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +72 47 8370.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +71 46 8370.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +70 45 8371.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +69 44 8371.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +68 43 8372.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +67 42 8372.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +66 41 8373.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +65 40 8373.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +73 48 8365.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +73 48 8365.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8380.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8380.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8383.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8401.1719 724.5469 moveto +P$1z +8403.7656 730.4219 moveto +P$1w +8406.4844 726.2969 moveto +P$1x +8415.6875 727.4531 moveto +P$1y +8416.1094 726.4531 moveto +P$2f +8428.5 729.4688 moveto +P$1r +8427.4219 729.1406 moveto +P$1s +8433.6094 733.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8366.75 744 moveto +71 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8366.75 752 moveto +71 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +135 48 8480.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +134 47 8481.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +133 46 8481.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +132 45 8482.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +131 44 8482.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +130 43 8483.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +129 42 8483.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +128 41 8484.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +127 40 8484.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +135 48 8476.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +135 48 8476.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8491.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8491.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8494.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8512.1719 864.5469 moveto +P$1z +8514.7656 870.4219 moveto +P$1w +8517.4844 866.2969 moveto +P$1x +8526.6875 867.4531 moveto +P$1y +8527.1094 866.4531 moveto +P$2f +8539.5 869.4688 moveto +P$1r +8538.4219 869.1406 moveto +P$1s +8544.6094 873.625 moveto +P$1q +8552.0781 868.9063 moveto +P$2a +8549.1094 865.2344 moveto +P$2b +8561.5 869.4688 moveto +P$1r +8560.4219 869.1406 moveto +P$1s +8568.0625 866.6406 moveto +P$1o +8571.9219 872.0313 moveto +P$1e +8575.5938 869.7344 moveto +P$1f +8581.4219 867.2031 moveto +P$1l +8581.4219 866.2969 moveto +P$1m +8592.3438 869.0469 moveto +P$1d +8599.0625 866.6406 moveto +P$1o +8607.5 869.4688 moveto +P$1r +8606.4219 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8477.75 884 moveto +133 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8477.75 892 moveto +133 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +118 48 8733 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +117 47 8733.5 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +116 46 8734 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +115 45 8734.5 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +114 44 8735 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +113 43 8735.5 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +112 42 8736 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +111 41 8736.5 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +110 40 8737 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +118 48 8729 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +118 48 8729 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8744 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8744 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8746.9688 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8764.4219 1004.5469 moveto +P$1z +8767.0156 1010.4219 moveto +P$1w +8769.7344 1006.2969 moveto +P$1x +8778.9375 1007.4531 moveto +P$1y +8779.3594 1006.4531 moveto +P$2f +8791.75 1009.4688 moveto +P$1r +8790.6719 1009.1406 moveto +P$1s +8796.8594 1013.625 moveto +P$1q +8803.1094 1005.4375 moveto +P$16 +8802.4375 1004.2656 moveto +P$17 +8813.5938 1009.0469 moveto +P$1d +8820.3125 1006.6406 moveto +P$1o +8822.5 1006.4531 moveto +P$2r +8837.75 1009.4688 moveto +P$1r +8836.6719 1009.1406 moveto +P$1s +8843.9375 1007.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8730 1024 moveto +116 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8730 1032 moveto +116 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +201 48 7735.75 996 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +200 47 7736.25 996.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +199 46 7736.75 997 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +198 45 7737.25 997.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +197 44 7737.75 998 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +196 43 7738.25 998.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +195 42 7738.75 999 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +194 41 7739.25 999.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +193 40 7739.75 1000 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +201 48 7731.75 992 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +201 48 7731.75 992 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7746.75 1008 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7746.75 1008 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7749.7188 1013.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7763.1094 1005.2344 moveto +P$2p +7761.9219 1004.2656 moveto +P$2q +7776.5 1009.4688 moveto +P$1r +7775.4219 1009.1406 moveto +P$1s +7783.6094 1006.7031 moveto +P$1h +7785.875 1006.4531 moveto +P$1b +7785.875 1003.8906 moveto +P$1c +7793.0625 1006.6406 moveto +P$1o +7795.875 1006.4531 moveto +P$1b +7795.875 1003.8906 moveto +P$1c +7801.4219 1007.2031 moveto +P$1l +7801.4219 1006.2969 moveto +P$1m +7812.3438 1009.0469 moveto +P$1d +7813.7188 1004.2656 moveto +P$1p +7825.6875 1007.4531 moveto +P$1y +7832.5 1009.4688 moveto +P$1r +7831.4219 1009.1406 moveto +P$1s +7840.5 1009.4688 moveto +P$1r +7839.4219 1009.1406 moveto +P$1s +7848.1719 1004.5469 moveto +P$1z +7856.5 1009.4688 moveto +P$1r +7855.4219 1009.1406 moveto +P$1s +7863.6094 1006.7031 moveto +P$1h +7866.9531 1004.5938 moveto +P$1k +7870.875 1006.4531 moveto +P$1b +7870.875 1003.8906 moveto +P$1c +7876.4219 1007.2031 moveto +P$1l +7876.4219 1006.2969 moveto +P$1m +7887.3438 1009.0469 moveto +P$1d +7893.4844 1005.0625 moveto +P$20 +7893.4844 1004.1094 moveto +P$21 +7899.9219 1012.0313 moveto +P$1e +7903.5938 1009.7344 moveto +P$1f +7907.9531 1004.5938 moveto +P$1k +7911.875 1006.4531 moveto +P$1b +7911.875 1003.8906 moveto +P$1c +7917.4219 1007.2031 moveto +P$1l +7917.4219 1006.2969 moveto +P$1m +7928.3438 1009.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7732.75 1024 moveto +199 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7732.75 1032 moveto +199 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +195 48 8809.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +194 47 8810.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +193 46 8810.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +192 45 8811.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +191 44 8811.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +190 43 8812.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +189 42 8812.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +188 41 8813.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +187 40 8813.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +195 48 8805.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +195 48 8805.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8820.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8820.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8823.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8837.1094 725.2344 moveto +P$2p +8835.9219 724.2656 moveto +P$2q +8850.5 729.4688 moveto +P$1r +8849.4219 729.1406 moveto +P$1s +8857.6094 726.7031 moveto +P$1h +8859.875 726.4531 moveto +P$1b +8859.875 723.8906 moveto +P$1c +8867.0625 726.6406 moveto +P$1o +8869.875 726.4531 moveto +P$1b +8869.875 723.8906 moveto +P$1c +8875.4219 727.2031 moveto +P$1l +8875.4219 726.2969 moveto +P$1m +8886.3438 729.0469 moveto +P$1d +8887.7188 724.2656 moveto +P$1p +8899.6875 727.4531 moveto +P$1y +8906.5 729.4688 moveto +P$1r +8905.4219 729.1406 moveto +P$1s +8914.5 729.4688 moveto +P$1r +8913.4219 729.1406 moveto +P$1s +8920.4844 725.0625 moveto +P$20 +8920.4844 724.1094 moveto +P$21 +8926.9219 732.0313 moveto +P$1e +8930.5938 729.7344 moveto +P$1f +8934.9531 724.5938 moveto +P$1k +8938.875 726.4531 moveto +P$1b +8938.875 723.8906 moveto +P$1c +8944.4219 727.2031 moveto +P$1l +8944.4219 726.2969 moveto +P$1m +8955.3438 729.0469 moveto +P$1d +8956.7188 724.2656 moveto +P$1p +8967.8594 729.7188 moveto +P$1i +8970.0156 729.2656 moveto +P$1j +8976.6875 727.4531 moveto +P$1y +8982.2031 729.6563 moveto +P$2g +8983.2813 732.2031 moveto +P$2h +8991.5 729.4688 moveto +P$1r +8990.4219 729.1406 moveto +P$1s +8994.9531 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8806.75 744 moveto +193 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8806.75 752 moveto +193 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +83 48 5651.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +82 47 5652.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +81 46 5652.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +80 45 5653.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +79 44 5653.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +78 43 5654.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +77 42 5654.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +76 41 5655.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +75 40 5655.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +83 48 5647.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +83 48 5647.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +5662.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5662.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5665.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +5680.8594 865.4375 moveto +P$16 +5680.1875 864.2656 moveto +P$17 +5690.2031 867.4531 moveto +P$18 +5686.5313 869.7344 moveto +P$19 +5698.2031 867.4531 moveto +P$18 +5694.5313 869.7344 moveto +P$19 +5705.6875 867.4531 moveto +P$1y +5712.5 869.4688 moveto +P$1r +5711.4219 869.1406 moveto +P$1s +5719.0625 866.6406 moveto +P$1o +5726.0625 866.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5648.75 884 moveto +81 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5648.75 892 moveto +81 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +186 48 7743.5 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +185 47 7744 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +184 46 7744.5 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +183 45 7745 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +182 44 7745.5 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +181 43 7746 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +180 42 7746.5 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +179 41 7747 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +178 40 7747.5 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +186 48 7739.5 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +186 48 7739.5 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +7754.5 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7754.5 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7757.4688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +7770.8594 1129.2344 moveto +P$2p +7769.6719 1128.2656 moveto +P$2q +7784.25 1133.4688 moveto +P$1r +7783.1719 1133.1406 moveto +P$1s +7791.3594 1130.7031 moveto +P$1h +7793.625 1130.4531 moveto +P$1b +7793.625 1127.8906 moveto +P$1c +7800.8125 1130.6406 moveto +P$1o +7803.625 1130.4531 moveto +P$1b +7803.625 1127.8906 moveto +P$1c +7809.1719 1131.2031 moveto +P$1l +7809.1719 1130.2969 moveto +P$1m +7820.0938 1133.0469 moveto +P$1d +7821.4688 1128.2656 moveto +P$1p +7833.4375 1131.4531 moveto +P$1y +7840.25 1133.4688 moveto +P$1r +7839.1719 1133.1406 moveto +P$1s +7848.25 1133.4688 moveto +P$1r +7847.1719 1133.1406 moveto +P$1s +7851.6719 1136.0313 moveto +P$1e +7855.3438 1133.7344 moveto +P$1f +7859.7031 1128.5938 moveto +P$1k +7863.625 1130.4531 moveto +P$1b +7863.625 1127.8906 moveto +P$1c +7869.1719 1131.2031 moveto +P$1l +7869.1719 1130.2969 moveto +P$1m +7880.0938 1133.0469 moveto +P$1d +7881.4688 1128.2656 moveto +P$1p +7892.6094 1133.7188 moveto +P$1i +7894.7656 1133.2656 moveto +P$1j +7901.4375 1131.4531 moveto +P$1y +7906.9531 1133.6563 moveto +P$2g +7908.0313 1136.2031 moveto +P$2h +7916.25 1133.4688 moveto +P$1r +7915.1719 1133.1406 moveto +P$1s +7919.7031 1128.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7740.5 1148 moveto +184 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7740.5 1156 moveto +184 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +109 48 8336.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +108 47 8337.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +107 46 8337.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +106 45 8338.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +105 44 8338.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +104 43 8339.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +103 42 8339.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +102 41 8340.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +101 40 8340.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +109 48 8332.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +109 48 8332.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8347.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8347.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8350.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8369.4844 864.9375 moveto +P$14 +8373.4219 867.2031 moveto +P$1l +8373.4219 866.2969 moveto +P$1m +8384.3438 869.0469 moveto +P$1d +8387.9531 864.5938 moveto +P$1k +8397.5 869.4688 moveto +P$1r +8396.4219 869.1406 moveto +P$1s +8405.3438 869.0469 moveto +P$1d +8408.9531 864.5938 moveto +P$1k +8412.9219 864.2656 moveto +P$2i +8416.9531 864.5938 moveto +P$1k +8426.5 869.4688 moveto +P$1r +8425.4219 869.1406 moveto +P$1s +8433.9844 867.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8333.75 884 moveto +107 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8333.75 892 moveto +107 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +210 48 6808 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +209 47 6808.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +208 46 6809 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +207 45 6809.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +206 44 6810 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +205 43 6810.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +204 42 6811 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +203 41 6811.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +202 40 6812 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +210 48 6804 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +210 48 6804 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +6819 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6819 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6821.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +6838.3281 728.9063 moveto +P$2a +6835.3594 725.2344 moveto +P$2b +6847.75 729.4688 moveto +P$1r +6846.6719 729.1406 moveto +P$1s +6854.3125 726.6406 moveto +P$1o +6860.1094 729.7188 moveto +P$1i +6862.2656 729.2656 moveto +P$1j +6868.9375 727.4531 moveto +P$1y +6874.8594 726.7031 moveto +P$1h +6882.5938 729.0469 moveto +P$2d +6885.1719 724.2656 moveto +P$29 +6899.75 729.4688 moveto +P$1r +6898.6719 729.1406 moveto +P$1s +6903.2031 724.5938 moveto +P$1k +6906.5 726.4531 moveto +P$2r +6918.6719 727.2031 moveto +P$1l +6918.6719 726.2969 moveto +P$1m +6927.9375 727.4531 moveto +P$1y +6929.0938 723.8906 moveto +P$2n +6936.1719 724.2656 moveto +P$2m +6951.75 729.4688 moveto +P$1r +6950.6719 729.1406 moveto +P$1s +6959.2344 727.7188 moveto +P$1a +6969.8438 729.7344 moveto +P$1f +6966.1719 727.4531 moveto +P$22 +6978.75 729.4688 moveto +P$1r +6977.6719 729.1406 moveto +P$1s +6984.9375 727.4531 moveto +P$1y +6990.3125 726.6406 moveto +P$1o +6998.5938 729.0469 moveto +P$2d +7001.125 726.4531 moveto +P$1b +7001.125 723.8906 moveto +P$1c +7005.1719 732.0313 moveto +P$1e +7008.8438 729.7344 moveto +P$1f +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6805 744 moveto +208 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6805 752 moveto +208 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +86 48 27845 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +85 47 27845.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +84 46 27846 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +83 45 27846.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +82 44 27847 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +81 43 27847.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +80 42 27848 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +79 41 27848.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +78 40 27849 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +86 48 27841 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +86 48 27841 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27856 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27856 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27858.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27870.75 600.2656 moveto +P$2x +27878.1719 600.2656 moveto +P$2m +27888.1719 600.2656 moveto +P$2j +27894.1719 600.2656 moveto +P$2s +27906.75 605.4688 moveto +P$1r +27905.6719 605.1406 moveto +P$1s +27914.75 605.4688 moveto +P$1r +27913.6719 605.1406 moveto +P$1s +27921.4531 603.4531 moveto +P$18 +27917.7813 605.7344 moveto +P$19 +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27842 620 moveto +84 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27842 628 moveto +84 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +90 48 9512 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +89 47 9512.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +88 46 9513 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +87 45 9513.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +86 44 9514 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +85 43 9514.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +84 42 9515 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +83 41 9515.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +82 40 9516 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +90 48 9508 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +90 48 9508 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9523 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9523 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9525.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9538.1719 724.2656 moveto +P$2s +9547.6719 727.2031 moveto +P$1l +9547.6719 726.2969 moveto +P$1m +9556.9375 727.4531 moveto +P$1y +9563.2344 727.7188 moveto +P$1a +9569.1719 724.2656 moveto +P$2i +9573.2031 724.5938 moveto +P$1k +9582.75 729.4688 moveto +P$1r +9581.6719 729.1406 moveto +P$1s +9590.2344 727.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9509 744 moveto +88 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9509 752 moveto +88 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +137 48 9581.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +136 47 9582.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +135 46 9582.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +134 45 9583.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +133 44 9583.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +132 43 9584.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +131 42 9584.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +130 41 9585.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +129 40 9585.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +137 48 9577.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +137 48 9577.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9592.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9592.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9595.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9607.9219 864.2656 moveto +P$2s +9617.4219 867.2031 moveto +P$1l +9617.4219 866.2969 moveto +P$1m +9626.6875 867.4531 moveto +P$1y +9632.9844 867.7188 moveto +P$1a +9644.1719 864.5469 moveto +P$1z +9652.5 869.4688 moveto +P$1r +9651.4219 869.1406 moveto +P$1s +9659.6094 866.7031 moveto +P$1h +9662.9531 864.5938 moveto +P$1k +9666.875 866.4531 moveto +P$1b +9666.875 863.8906 moveto +P$1c +9672.4219 867.2031 moveto +P$1l +9672.4219 866.2969 moveto +P$1m +9683.3438 869.0469 moveto +P$1d +9685.9219 864.2656 moveto +P$2i +9689.9531 864.5938 moveto +P$1k +9699.5 869.4688 moveto +P$1r +9698.4219 869.1406 moveto +P$1s +9706.9844 867.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9578.75 884 moveto +135 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9578.75 892 moveto +135 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +163 48 9637.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +162 47 9638.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +161 46 9638.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +160 45 9639.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +159 44 9639.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +158 43 9640.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +157 42 9640.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +156 41 9641.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +155 40 9641.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +163 48 9633.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +163 48 9633.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9648.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9648.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9651.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9663.9219 724.2656 moveto +P$2s +9673.4219 727.2031 moveto +P$1l +9673.4219 726.2969 moveto +P$1m +9682.6875 727.4531 moveto +P$1y +9688.9844 727.7188 moveto +P$1a +9700.1719 724.5469 moveto +P$1z +9708.5 729.4688 moveto +P$1r +9707.4219 729.1406 moveto +P$1s +9715.6094 726.7031 moveto +P$1h +9718.9531 724.5938 moveto +P$1k +9722.875 726.4531 moveto +P$1b +9722.875 723.8906 moveto +P$1c +9728.4219 727.2031 moveto +P$1l +9728.4219 726.2969 moveto +P$1m +9739.3438 729.0469 moveto +P$1d +9741.1563 724.2656 moveto +P$15 +9756.6875 727.4531 moveto +P$1y +9760.8594 729.7188 moveto +P$1i +9763.0156 729.2656 moveto +P$1j +9766.9219 732.0313 moveto +P$1e +9770.5938 729.7344 moveto +P$1f +9774.9219 732.0313 moveto +P$1e +9778.5938 729.7344 moveto +P$1f +9787.5 729.4688 moveto +P$1r +9786.4219 729.1406 moveto +P$1s +9793.6875 727.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9634.75 744 moveto +161 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9634.75 752 moveto +161 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +110 48 9836 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +109 47 9836.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +108 46 9837 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +107 45 9837.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +106 44 9838 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +105 43 9838.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +104 42 9839 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +103 41 9839.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +102 40 9840 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +110 48 9832 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +110 48 9832 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9847 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9847 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9849.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9862.1719 724.2656 moveto +P$2s +9871.6719 727.2031 moveto +P$1l +9871.6719 726.2969 moveto +P$1m +9880.9375 727.4531 moveto +P$1y +9887.2344 727.7188 moveto +P$1a +9898.4219 724.5469 moveto +P$1z +9906.75 729.4688 moveto +P$1r +9905.6719 729.1406 moveto +P$1s +9913.8594 726.7031 moveto +P$1h +9917.2031 724.5938 moveto +P$1k +9921.125 726.4531 moveto +P$1b +9921.125 723.8906 moveto +P$1c +9926.6719 727.2031 moveto +P$1l +9926.6719 726.2969 moveto +P$1m +9937.5938 729.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9833 744 moveto +108 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9833 752 moveto +108 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +104 48 28204 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +103 47 28204.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +102 46 28205 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +101 45 28205.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +100 44 28206 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +99 43 28206.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +98 42 28207 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +97 41 28207.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +96 40 28208 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +104 48 28200 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +104 48 28200 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28215 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28215 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28217.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28236.7344 600.9375 moveto +P$14 +28240.6719 603.2031 moveto +P$1l +28240.6719 602.2969 moveto +P$1m +28251.2344 603.7188 moveto +P$1a +28258.1719 608.0313 moveto +P$1e +28261.8438 605.7344 moveto +P$1f +28267.6719 603.2031 moveto +P$1l +28267.6719 602.2969 moveto +P$1m +28278.5938 605.0469 moveto +P$1d +28286.75 605.4688 moveto +P$1r +28285.6719 605.1406 moveto +P$1s +28294.5938 605.0469 moveto +P$1d +28298.2031 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28201 620 moveto +102 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28201 628 moveto +102 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +95 48 10891.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +94 47 10892.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +93 46 10892.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +92 45 10893.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +91 44 10893.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +90 43 10894.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +89 42 10894.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +88 41 10895.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +87 40 10895.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +95 48 10887.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +95 48 10887.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +10902.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10902.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10905.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10919.1594 601.2344 moveto +P$2p +10917.9719 600.2656 moveto +P$2q +10929.4719 603.2031 moveto +P$1l +10929.4719 602.2969 moveto +P$1m +10939.6594 602.7031 moveto +P$1h +10941.9719 600.2656 moveto +P$2s +10951.4719 603.2031 moveto +P$1l +10951.4719 602.2969 moveto +P$1m +10956.925 599.8906 moveto +P$1g +10964.2531 603.4531 moveto +P$18 +10960.5813 605.7344 moveto +P$19 +10973.55 605.4688 moveto +P$1r +10972.4719 605.1406 moveto +P$1s +10979.7375 603.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10888.8 620 moveto +93 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10888.8 628 moveto +93 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +80 48 10776 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +79 47 10776.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +78 46 10777 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +77 45 10777.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +76 44 10778 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +75 43 10778.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +74 42 10779 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +73 41 10779.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +72 40 10780 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +80 48 10772 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +80 48 10772 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +10787 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10787 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10789.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10803.3594 601.2344 moveto +P$2p +10802.1719 600.2656 moveto +P$2q +10813.6719 603.2031 moveto +P$1l +10813.6719 602.2969 moveto +P$1m +10823.8594 602.7031 moveto +P$1h +10826.1719 600.2656 moveto +P$2j +10832.125 602.4531 moveto +P$1b +10832.125 599.8906 moveto +P$1c +10840.5938 605.0469 moveto +P$1d +10843.0938 599.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10773 620 moveto +78 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10773 628 moveto +78 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +96 48 10810 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +95 47 10810.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +94 46 10811 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +93 45 10811.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +92 44 10812 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +91 43 10812.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +90 42 10813 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +89 41 10813.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +88 40 10814 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +96 48 10806 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +96 48 10806 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +10821 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10821 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10823.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10837.3594 725.2344 moveto +P$2p +10836.1719 724.2656 moveto +P$2q +10847.6719 727.2031 moveto +P$1l +10847.6719 726.2969 moveto +P$1m +10857.8594 726.7031 moveto +P$1h +10860.0156 730.4219 moveto +P$1w +10862.7344 726.2969 moveto +P$1x +10873.2344 727.7188 moveto +P$1a +10884.75 729.4688 moveto +P$1r +10883.6719 729.1406 moveto +P$1s +10892.5938 729.0469 moveto +P$1d +10896.2031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10807 744 moveto +94 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10807 752 moveto +94 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +271 48 10120.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +270 47 10121.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +269 46 10121.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +268 45 10122.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +267 44 10122.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +266 43 10123.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +265 42 10123.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +264 41 10124.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +263 40 10124.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +271 48 10116.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +271 48 10116.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +10131.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10131.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10134.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10148.1594 601.2344 moveto +P$2p +10146.9719 600.2656 moveto +P$2q +10158.4719 603.2031 moveto +P$1l +10158.4719 602.2969 moveto +P$1m +10168.6594 602.7031 moveto +P$1h +10170.8156 606.4219 moveto +P$1w +10173.5344 602.2969 moveto +P$1x +10184.0344 603.7188 moveto +P$1a +10195.55 605.4688 moveto +P$1r +10194.4719 605.1406 moveto +P$1s +10203.3938 605.0469 moveto +P$1d +10207.0031 600.5938 moveto +P$1k +10217.5344 600.9375 moveto +P$14 +10221.9094 605.7188 moveto +P$1i +10224.0656 605.2656 moveto +P$1j +10228.0031 600.5938 moveto +P$1k +10237.55 605.4688 moveto +P$1r +10236.4719 605.1406 moveto +P$1s +10244.2531 605.6563 moveto +P$2g +10245.3313 608.2031 moveto +P$2h +10250.4719 603.2031 moveto +P$1l +10250.4719 602.2969 moveto +P$1m +10259.7375 603.4531 moveto +P$1y +10263.6594 609.625 moveto +P$1q +10268.1594 604.8438 moveto +P$1t +10268.1594 601.2344 moveto +P$1u +10266.9719 600.2656 moveto +P$1v +10278.7375 603.4531 moveto +P$1y +10282.4719 603.2031 moveto +P$1l +10282.4719 602.2969 moveto +P$1m +10287.3 602.4531 moveto +P$2r +10301.1125 602.6406 moveto +P$1o +10309.55 605.4688 moveto +P$1r +10308.4719 605.1406 moveto +P$1s +10315.7375 603.4531 moveto +P$1y +10319.9094 601.4375 moveto +P$16 +10319.2375 600.2656 moveto +P$17 +10325.9719 608.0313 moveto +P$1e +10329.6438 605.7344 moveto +P$1f +10333.9719 608.0313 moveto +P$1e +10337.6438 605.7344 moveto +P$1f +10340.925 599.8906 moveto +P$1g +10343.925 602.4531 moveto +P$1b +10343.925 599.8906 moveto +P$1c +10351.6594 602.7031 moveto +P$1h +10356.9094 605.7188 moveto +P$1i +10359.0656 605.2656 moveto +P$1j +10363.0031 600.5938 moveto +P$1k +10366.925 602.4531 moveto +P$1b +10366.925 599.8906 moveto +P$1c +10372.4719 603.2031 moveto +P$1l +10372.4719 602.2969 moveto +P$1m +10383.3938 605.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10117.8 620 moveto +269 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10117.8 628 moveto +269 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +314 48 10427 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +313 47 10427.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +312 46 10428 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +311 45 10428.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +310 44 10429 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +309 43 10429.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +308 42 10430 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +307 41 10430.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +306 40 10431 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +314 48 10423 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +314 48 10423 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +10438 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10438 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10440.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10453.1719 600.2656 moveto +P$2j +10464.75 605.4688 moveto +P$1r +10463.6719 605.1406 moveto +P$1s +10471.4531 605.6563 moveto +P$2g +10472.5313 608.2031 moveto +P$2h +10478.1094 605.7188 moveto +P$1i +10480.2656 605.2656 moveto +P$1j +10487.8594 602.7031 moveto +P$1h +10492.8594 609.625 moveto +P$1q +10497.3594 601.2344 moveto +P$2p +10496.1719 600.2656 moveto +P$2q +10507.6719 603.2031 moveto +P$1l +10507.6719 602.2969 moveto +P$1m +10517.8594 602.7031 moveto +P$1h +10520.0156 606.4219 moveto +P$1w +10522.7344 602.2969 moveto +P$1x +10533.2344 603.7188 moveto +P$1a +10544.75 605.4688 moveto +P$1r +10543.6719 605.1406 moveto +P$1s +10552.5938 605.0469 moveto +P$1d +10556.2031 600.5938 moveto +P$1k +10566.7344 600.9375 moveto +P$14 +10571.1094 605.7188 moveto +P$1i +10573.2656 605.2656 moveto +P$1j +10577.2031 600.5938 moveto +P$1k +10586.75 605.4688 moveto +P$1r +10585.6719 605.1406 moveto +P$1s +10593.4531 605.6563 moveto +P$2g +10594.5313 608.2031 moveto +P$2h +10599.6719 603.2031 moveto +P$1l +10599.6719 602.2969 moveto +P$1m +10608.9375 603.4531 moveto +P$1y +10612.8594 609.625 moveto +P$1q +10617.3594 604.8438 moveto +P$1t +10617.3594 601.2344 moveto +P$1u +10616.1719 600.2656 moveto +P$1v +10627.9375 603.4531 moveto +P$1y +10631.6719 603.2031 moveto +P$1l +10631.6719 602.2969 moveto +P$1m +10636.5 602.4531 moveto +P$2r +10650.3125 602.6406 moveto +P$1o +10658.75 605.4688 moveto +P$1r +10657.6719 605.1406 moveto +P$1s +10664.9375 603.4531 moveto +P$1y +10669.1094 601.4375 moveto +P$16 +10668.4375 600.2656 moveto +P$17 +10675.1719 608.0313 moveto +P$1e +10678.8438 605.7344 moveto +P$1f +10683.1719 608.0313 moveto +P$1e +10686.8438 605.7344 moveto +P$1f +10690.125 599.8906 moveto +P$1g +10693.125 602.4531 moveto +P$1b +10693.125 599.8906 moveto +P$1c +10700.8594 602.7031 moveto +P$1h +10706.1094 605.7188 moveto +P$1i +10708.2656 605.2656 moveto +P$1j +10712.2031 600.5938 moveto +P$1k +10716.125 602.4531 moveto +P$1b +10716.125 599.8906 moveto +P$1c +10721.6719 603.2031 moveto +P$1l +10721.6719 602.2969 moveto +P$1m +10732.5938 605.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10424 620 moveto +312 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10424 628 moveto +312 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +98 48 10809.5 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +97 47 10810 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +96 46 10810.5 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +95 45 10811 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +94 44 10811.5 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +93 43 10812 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +92 42 10812.5 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +91 41 10813 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +90 40 10813.5 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +98 48 10805.5 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +98 48 10805.5 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +10820.5 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10820.5 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10823.4688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10839.8281 868.9063 moveto +P$2a +10836.8594 865.2344 moveto +P$2b +10849.25 869.4688 moveto +P$1r +10848.1719 869.1406 moveto +P$1s +10852.6719 872.0313 moveto +P$1e +10856.3438 869.7344 moveto +P$1f +10862.1719 867.2031 moveto +P$1l +10862.1719 866.2969 moveto +P$1m +10871.8125 866.6406 moveto +P$1o +10874.625 866.4531 moveto +P$1b +10874.625 863.8906 moveto +P$1c +10878.7031 864.5938 moveto +P$1k +10885.1719 867.2031 moveto +P$1l +10885.1719 866.2969 moveto +P$1m +10894.4375 867.4531 moveto +P$1y +10898.3594 873.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10806.5 884 moveto +96 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10806.5 892 moveto +96 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +221 48 22646.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +220 47 22647.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +219 46 22647.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +218 45 22648.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +217 44 22648.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +216 43 22649.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +215 42 22649.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +214 41 22650.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +213 40 22650.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +221 48 22642.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +221 48 22642.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22657.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22657.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22660.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22679.5344 352.9375 moveto +P$14 +22683.9094 357.7188 moveto +P$1i +22686.0656 357.2656 moveto +P$1j +22690.0031 352.5938 moveto +P$1k +22699.55 357.4688 moveto +P$1r +22698.4719 357.1406 moveto +P$1s +22706.2531 357.6563 moveto +P$2g +22707.3313 360.2031 moveto +P$2h +22712.4719 355.2031 moveto +P$1l +22712.4719 354.2969 moveto +P$1m +22721.7375 355.4531 moveto +P$1y +22725.6594 361.625 moveto +P$1q +22730.1594 353.2344 moveto +P$2p +22728.9719 352.2656 moveto +P$2q +22740.4719 355.2031 moveto +P$1l +22740.4719 354.2969 moveto +P$1m +22750.6594 354.7031 moveto +P$1h +22757.1125 354.6406 moveto +P$1o +22759.9719 352.2656 moveto +P$29 +22771.9094 357.7188 moveto +P$1i +22774.0656 357.2656 moveto +P$1j +22776.1594 354.4531 moveto +P$2f +22782.925 354.4531 moveto +P$1b +22782.925 351.8906 moveto +P$1c +22790.2531 357.6563 moveto +P$2g +22791.3313 360.2031 moveto +P$2h +22796.9094 357.7188 moveto +P$1i +22799.0656 357.2656 moveto +P$1j +22803.0031 352.5938 moveto +P$1k +22809.4719 355.2031 moveto +P$1l +22809.4719 354.2969 moveto +P$1m +22818.7375 355.4531 moveto +P$1y +22821.1594 353.2344 moveto +P$27 +22819.9719 352.2656 moveto +P$28 +22830.4719 355.2031 moveto +P$1l +22830.4719 354.2969 moveto +P$1m +22839.7375 355.4531 moveto +P$1y +22842.0031 352.5938 moveto +P$1k +22845.925 351.8906 moveto +P$1g +22854.55 357.4688 moveto +P$1r +22853.4719 357.1406 moveto +P$1s +22858.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22643.8 372 moveto +219 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22643.8 380 moveto +219 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +264 48 23439 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +263 47 23439.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +262 46 23440 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +261 45 23440.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +260 44 23441 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +259 43 23441.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +258 42 23442 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +257 41 23442.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +256 40 23443 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +264 48 23435 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +264 48 23435 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +23450 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23450 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +23452.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +23465.1719 352.2656 moveto +P$2j +23476.75 357.4688 moveto +P$1r +23475.6719 357.1406 moveto +P$1s +23483.4531 357.6563 moveto +P$2g +23484.5313 360.2031 moveto +P$2h +23490.1094 357.7188 moveto +P$1i +23492.2656 357.2656 moveto +P$1j +23499.8594 354.7031 moveto +P$1h +23504.8594 361.625 moveto +P$1q +23514.7344 352.9375 moveto +P$14 +23519.1094 357.7188 moveto +P$1i +23521.2656 357.2656 moveto +P$1j +23525.2031 352.5938 moveto +P$1k +23534.75 357.4688 moveto +P$1r +23533.6719 357.1406 moveto +P$1s +23541.4531 357.6563 moveto +P$2g +23542.5313 360.2031 moveto +P$2h +23547.6719 355.2031 moveto +P$1l +23547.6719 354.2969 moveto +P$1m +23556.9375 355.4531 moveto +P$1y +23560.8594 361.625 moveto +P$1q +23565.3594 353.2344 moveto +P$2p +23564.1719 352.2656 moveto +P$2q +23575.6719 355.2031 moveto +P$1l +23575.6719 354.2969 moveto +P$1m +23585.8594 354.7031 moveto +P$1h +23592.3125 354.6406 moveto +P$1o +23595.1719 352.2656 moveto +P$29 +23607.1094 357.7188 moveto +P$1i +23609.2656 357.2656 moveto +P$1j +23611.3594 354.4531 moveto +P$2f +23618.125 354.4531 moveto +P$1b +23618.125 351.8906 moveto +P$1c +23625.4531 357.6563 moveto +P$2g +23626.5313 360.2031 moveto +P$2h +23632.1094 357.7188 moveto +P$1i +23634.2656 357.2656 moveto +P$1j +23638.2031 352.5938 moveto +P$1k +23644.6719 355.2031 moveto +P$1l +23644.6719 354.2969 moveto +P$1m +23653.9375 355.4531 moveto +P$1y +23656.3594 353.2344 moveto +P$27 +23655.1719 352.2656 moveto +P$28 +23665.6719 355.2031 moveto +P$1l +23665.6719 354.2969 moveto +P$1m +23674.9375 355.4531 moveto +P$1y +23677.2031 352.5938 moveto +P$1k +23681.125 351.8906 moveto +P$1g +23689.75 357.4688 moveto +P$1r +23688.6719 357.1406 moveto +P$1s +23693.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23436 372 moveto +262 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23436 380 moveto +262 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +203 48 22902.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +202 47 22903.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +201 46 22903.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +200 45 22904.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +199 44 22904.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +198 43 22905.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +197 42 22905.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +196 41 22906.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +195 40 22906.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +203 48 22898.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +203 48 22898.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22913.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22913.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22916.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22933.1281 356.9063 moveto +P$2a +22930.1594 353.2344 moveto +P$2b +22942.55 357.4688 moveto +P$1r +22941.4719 357.1406 moveto +P$1s +22949.6594 354.7031 moveto +P$1h +22957.55 357.4688 moveto +P$1r +22956.4719 357.1406 moveto +P$1s +22965.3938 357.0469 moveto +P$1d +22969.0031 352.5938 moveto +P$1k +22972.8469 352.2656 moveto +P$24 +22982.9719 360.0313 moveto +P$1e +22986.6438 357.7344 moveto +P$1f +22994.2531 355.4531 moveto +P$18 +22990.5813 357.7344 moveto +P$19 +23000.9094 357.7188 moveto +P$1i +23003.0656 357.2656 moveto +P$1j +23007.0031 352.5938 moveto +P$1k +23016.55 357.4688 moveto +P$1r +23015.4719 357.1406 moveto +P$1s +23023.2531 355.4531 moveto +P$18 +23019.5813 357.7344 moveto +P$19 +23028.1594 353.2344 moveto +P$2p +23026.9719 352.2656 moveto +P$2q +23038.4719 355.2031 moveto +P$1l +23038.4719 354.2969 moveto +P$1m +23048.6594 354.7031 moveto +P$1h +23055.1125 354.6406 moveto +P$1o +23059.1594 353.2344 moveto +P$27 +23057.9719 352.2656 moveto +P$28 +23068.4719 355.2031 moveto +P$1l +23068.4719 354.2969 moveto +P$1m +23077.7375 355.4531 moveto +P$1y +23080.0031 352.5938 moveto +P$1k +23083.925 351.8906 moveto +P$1g +23092.55 357.4688 moveto +P$1r +23091.4719 357.1406 moveto +P$1s +23096.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22899.8 372 moveto +201 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22899.8 380 moveto +201 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +263 48 23140.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +262 47 23141.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +261 46 23141.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +260 45 23142.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +259 44 23142.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +258 43 23143.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +257 42 23143.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +256 41 23144.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +255 40 23144.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +263 48 23136.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +263 48 23136.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +23151.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23151.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +23154.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +23171.1281 356.9063 moveto +P$2a +23168.1594 353.2344 moveto +P$2b +23180.55 357.4688 moveto +P$1r +23179.4719 357.1406 moveto +P$1s +23187.6594 354.7031 moveto +P$1h +23195.55 357.4688 moveto +P$1r +23194.4719 357.1406 moveto +P$1s +23203.3938 357.0469 moveto +P$1d +23207.0031 352.5938 moveto +P$1k +23210.8469 352.2656 moveto +P$24 +23220.9719 360.0313 moveto +P$1e +23224.6438 357.7344 moveto +P$1f +23232.2531 355.4531 moveto +P$18 +23228.5813 357.7344 moveto +P$19 +23238.9094 357.7188 moveto +P$1i +23241.0656 357.2656 moveto +P$1j +23245.0031 352.5938 moveto +P$1k +23254.55 357.4688 moveto +P$1r +23253.4719 357.1406 moveto +P$1s +23261.2531 355.4531 moveto +P$18 +23257.5813 357.7344 moveto +P$19 +23266.1594 353.2344 moveto +P$2p +23264.9719 352.2656 moveto +P$2q +23276.4719 355.2031 moveto +P$1l +23276.4719 354.2969 moveto +P$1m +23286.6594 354.7031 moveto +P$1h +23293.1125 354.6406 moveto +P$1o +23295.9719 352.2656 moveto +P$29 +23307.9094 357.7188 moveto +P$1i +23310.0656 357.2656 moveto +P$1j +23312.1594 354.4531 moveto +P$2f +23318.925 354.4531 moveto +P$1b +23318.925 351.8906 moveto +P$1c +23326.2531 357.6563 moveto +P$2g +23327.3313 360.2031 moveto +P$2h +23332.9094 357.7188 moveto +P$1i +23335.0656 357.2656 moveto +P$1j +23339.0031 352.5938 moveto +P$1k +23345.4719 355.2031 moveto +P$1l +23345.4719 354.2969 moveto +P$1m +23354.7375 355.4531 moveto +P$1y +23357.1594 353.2344 moveto +P$27 +23355.9719 352.2656 moveto +P$28 +23366.4719 355.2031 moveto +P$1l +23366.4719 354.2969 moveto +P$1m +23375.7375 355.4531 moveto +P$1y +23378.0031 352.5938 moveto +P$1k +23381.925 351.8906 moveto +P$1g +23390.55 357.4688 moveto +P$1r +23389.4719 357.1406 moveto +P$1s +23394.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23137.8 372 moveto +261 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23137.8 380 moveto +261 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +74 48 18877 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +73 47 18877.5 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +72 46 18878 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +71 45 18878.5 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +70 44 18879 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +69 43 18879.5 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +68 42 18880 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +67 41 18880.5 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +66 40 18881 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +74 48 18873 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +74 48 18873 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18888 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18888 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18890.9688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18904.3594 229.2344 moveto +P$27 +18903.1719 228.2656 moveto +P$28 +18913.6719 231.2031 moveto +P$1l +18913.6719 230.2969 moveto +P$1m +18922.9375 231.4531 moveto +P$1y +18925.2031 228.5938 moveto +P$1k +18929.125 227.8906 moveto +P$1g +18937.75 233.4688 moveto +P$1r +18936.6719 233.1406 moveto +P$1s +18941.2031 228.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18874 248 moveto +72 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18874 256 moveto +72 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +111 48 18840.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +110 47 18841.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +109 46 18841.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +108 45 18842.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +107 44 18842.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +106 43 18843.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +105 42 18843.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +104 41 18844.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +103 40 18844.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +111 48 18836.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +111 48 18836.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18851.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18851.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18854.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18869.9094 353.4375 moveto +P$16 +18869.2375 352.2656 moveto +P$17 +18879.2531 357.6563 moveto +P$2g +18880.3313 360.2031 moveto +P$2h +18888.55 357.4688 moveto +P$1r +18887.4719 357.1406 moveto +P$1s +18896.3938 357.0469 moveto +P$1d +18900.0031 352.5938 moveto +P$1k +18905.1594 353.2344 moveto +P$27 +18903.9719 352.2656 moveto +P$28 +18914.4719 355.2031 moveto +P$1l +18914.4719 354.2969 moveto +P$1m +18923.7375 355.4531 moveto +P$1y +18926.0031 352.5938 moveto +P$1k +18929.925 351.8906 moveto +P$1g +18938.55 357.4688 moveto +P$1r +18937.4719 357.1406 moveto +P$1s +18942.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18837.8 372 moveto +109 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18837.8 380 moveto +109 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +69 48 18881.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +68 47 18882.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +67 46 18882.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +66 45 18883.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +65 44 18883.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +64 43 18884.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +63 42 18884.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +62 41 18885.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +61 40 18885.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +69 48 18877.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +69 48 18877.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18892.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18892.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18895.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18909.1594 105.2344 moveto +P$27 +18907.9719 104.2656 moveto +P$28 +18918.4719 107.2031 moveto +P$1l +18918.4719 106.2969 moveto +P$1m +18927.7375 107.4531 moveto +P$1y +18930.0031 104.5938 moveto +P$1k +18936.9094 109.7188 moveto +P$1i +18939.0656 109.2656 moveto +P$1j +18941.925 103.8906 moveto +P$1g +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18878.8 124 moveto +67 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18878.8 132 moveto +67 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +103 48 18743.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +102 47 18744.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +101 46 18744.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +100 45 18745.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +99 44 18745.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +98 43 18746.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +97 42 18746.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +96 41 18747.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +95 40 18747.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +103 48 18739.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +103 48 18739.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18754.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18754.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18757.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18771.1594 105.2344 moveto +P$27 +18769.9719 104.2656 moveto +P$28 +18780.4719 107.2031 moveto +P$1l +18780.4719 106.2969 moveto +P$1m +18789.7375 107.4531 moveto +P$1y +18792.0031 104.5938 moveto +P$1k +18795.925 103.8906 moveto +P$1g +18804.55 109.4688 moveto +P$1r +18803.4719 109.1406 moveto +P$1s +18808.0031 104.5938 moveto +P$1k +18810.7688 104.2656 moveto +P$1p +18821.6594 113.625 moveto +P$1q +18825.9719 112.0313 moveto +P$1e +18829.6438 109.7344 moveto +P$1f +18838.55 109.4688 moveto +P$1r +18837.4719 109.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18740.8 124 moveto +101 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18740.8 132 moveto +101 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +106 48 25739.5 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +105 47 25740 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +104 46 25740.5 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +103 45 25741 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +102 44 25741.5 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +101 43 25742 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +100 42 25742.5 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +99 41 25743 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +98 40 25743.5 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +106 48 25735.5 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +106 48 25735.5 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25750.5 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25750.5 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25753.4688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25766.8594 601.2344 moveto +P$2p +25765.6719 600.2656 moveto +P$2q +25777.1719 603.2031 moveto +P$1l +25777.1719 602.2969 moveto +P$1m +25787.3594 602.7031 moveto +P$1h +25790.8594 604.8438 moveto +P$1t +25790.8594 601.2344 moveto +P$1u +25789.6719 600.2656 moveto +P$1v +25797.625 599.8906 moveto +P$1g +25803.1719 603.2031 moveto +P$1l +25803.1719 602.2969 moveto +P$1m +25813.3438 605.7344 moveto +P$1f +25809.6719 603.4531 moveto +P$22 +25816.625 602.4531 moveto +P$23 +25816.625 599.8906 moveto +P$1c +25825.25 605.4688 moveto +P$1r +25824.1719 605.1406 moveto +P$1s +25832.3594 602.7031 moveto +P$1h +25835.7031 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25736.5 620 moveto +104 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25736.5 628 moveto +104 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +53 48 25879.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +52 47 25880.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +51 46 25880.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +50 45 25881.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +49 44 25881.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +48 43 25882.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +47 42 25882.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +46 41 25883.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +45 40 25883.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +53 48 25875.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +53 48 25875.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25890.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25890.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25893.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25905.9719 600.2656 moveto +P$2s +25912.925 602.4531 moveto +P$1b +25912.925 599.8906 moveto +P$1c +25915.925 599.8906 moveto +P$1g +25924.55 605.4688 moveto +P$1r +25923.4719 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25876.8 620 moveto +51 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25876.8 628 moveto +51 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +71 48 25967.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +70 47 25968.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +69 46 25968.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +68 45 25969.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +67 44 25969.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +66 43 25970.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +65 42 25970.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +64 41 25971.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +63 40 25971.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +71 48 25963.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +71 48 25963.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25978.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25978.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25981.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25993.9719 600.2656 moveto +P$2s +26003.4719 603.2031 moveto +P$1l +26003.4719 602.2969 moveto +P$1m +26008.925 599.8906 moveto +P$1g +26016.2531 603.4531 moveto +P$18 +26012.5813 605.7344 moveto +P$19 +26025.55 605.4688 moveto +P$1r +26024.4719 605.1406 moveto +P$1s +26031.7375 603.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25964.8 620 moveto +69 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25964.8 628 moveto +69 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +98 48 25890.5 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +97 47 25891 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +96 46 25891.5 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +95 45 25892 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +94 44 25892.5 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +93 43 25893 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +92 42 25893.5 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +91 41 25894 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +90 40 25894.5 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +98 48 25886.5 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +98 48 25886.5 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25901.5 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25901.5 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25904.4688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25920.8281 480.9063 moveto +P$2a +25917.8594 477.2344 moveto +P$2b +25930.25 481.4688 moveto +P$1r +25929.1719 481.1406 moveto +P$1s +25933.6719 484.0313 moveto +P$1e +25937.3438 481.7344 moveto +P$1f +25943.1719 479.2031 moveto +P$1l +25943.1719 478.2969 moveto +P$1m +25952.8125 478.6406 moveto +P$1o +25955.625 478.4531 moveto +P$1b +25955.625 475.8906 moveto +P$1c +25959.7031 476.5938 moveto +P$1k +25966.1719 479.2031 moveto +P$1l +25966.1719 478.2969 moveto +P$1m +25975.4375 479.4531 moveto +P$1y +25979.3594 485.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25887.5 496 moveto +96 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25887.5 504 moveto +96 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +116 48 25739.5 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +115 47 25740 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +114 46 25740.5 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +113 45 25741 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +112 44 25741.5 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +111 43 25742 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +110 42 25742.5 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +109 41 25743 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +108 40 25743.5 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +116 48 25735.5 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +116 48 25735.5 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25750.5 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25750.5 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25753.4688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25769.8281 480.9063 moveto +P$2a +25766.8594 477.2344 moveto +P$2b +25779.25 481.4688 moveto +P$1r +25778.1719 481.1406 moveto +P$1s +25785.8125 478.6406 moveto +P$1o +25791.1719 479.2031 moveto +P$1l +25791.1719 478.2969 moveto +P$1m +25796.5156 482.4219 moveto +P$1w +25799.2344 478.2969 moveto +P$1x +25808.4375 479.4531 moveto +P$1y +25814.3594 478.7031 moveto +P$1h +25822.25 481.4688 moveto +P$1r +25821.1719 481.1406 moveto +P$1s +25824.6719 476.2656 moveto +P$2i +25832.7344 479.7188 moveto +P$1a +25839.6719 484.0313 moveto +P$1e +25843.3438 481.7344 moveto +P$1f +25846.625 475.8906 moveto +P$1g +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25736.5 496 moveto +114 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25736.5 504 moveto +114 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +203 48 23758.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +202 47 23759.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +201 46 23759.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +200 45 23760.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +199 44 23760.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +198 43 23761.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +197 42 23761.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +196 41 23762.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +195 40 23762.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +203 48 23754.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +203 48 23754.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +23769.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23769.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +23772.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +23789.1281 356.9063 moveto +P$2a +23786.1594 353.2344 moveto +P$2b +23798.55 357.4688 moveto +P$1r +23797.4719 357.1406 moveto +P$1s +23805.6594 354.7031 moveto +P$1h +23813.55 357.4688 moveto +P$1r +23812.4719 357.1406 moveto +P$1s +23821.3938 357.0469 moveto +P$1d +23825.0031 352.5938 moveto +P$1k +23828.8469 352.2656 moveto +P$24 +23838.9719 360.0313 moveto +P$1e +23842.6438 357.7344 moveto +P$1f +23850.2531 355.4531 moveto +P$18 +23846.5813 357.7344 moveto +P$19 +23856.9094 357.7188 moveto +P$1i +23859.0656 357.2656 moveto +P$1j +23863.0031 352.5938 moveto +P$1k +23872.55 357.4688 moveto +P$1r +23871.4719 357.1406 moveto +P$1s +23879.2531 355.4531 moveto +P$18 +23875.5813 357.7344 moveto +P$19 +23884.1594 353.2344 moveto +P$2p +23882.9719 352.2656 moveto +P$2q +23894.4719 355.2031 moveto +P$1l +23894.4719 354.2969 moveto +P$1m +23904.6594 354.7031 moveto +P$1h +23911.1125 354.6406 moveto +P$1o +23915.1594 353.2344 moveto +P$27 +23913.9719 352.2656 moveto +P$28 +23924.4719 355.2031 moveto +P$1l +23924.4719 354.2969 moveto +P$1m +23933.7375 355.4531 moveto +P$1y +23936.0031 352.5938 moveto +P$1k +23939.925 351.8906 moveto +P$1g +23948.55 357.4688 moveto +P$1r +23947.4719 357.1406 moveto +P$1s +23952.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23755.8 372 moveto +201 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +23755.8 380 moveto +201 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +180 48 24556 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +179 47 24556.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +178 46 24557 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +177 45 24557.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +176 44 24558 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +175 43 24558.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +174 42 24559 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +173 41 24559.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +172 40 24560 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +180 48 24552 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +180 48 24552 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +24567 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24567 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24569.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24588.7344 352.9375 moveto +P$14 +24592.6719 355.2031 moveto +P$1l +24592.6719 354.2969 moveto +P$1m +24603.5938 357.0469 moveto +P$1d +24607.2031 352.5938 moveto +P$1k +24616.75 357.4688 moveto +P$1r +24615.6719 357.1406 moveto +P$1s +24624.5938 357.0469 moveto +P$1d +24628.2031 352.5938 moveto +P$1k +24633.3594 353.2344 moveto +P$2p +24632.1719 352.2656 moveto +P$2q +24641.125 354.4531 moveto +P$1b +24641.125 351.8906 moveto +P$1c +24647.9375 355.4531 moveto +P$1y +24654.75 357.4688 moveto +P$1r +24653.6719 357.1406 moveto +P$1s +24661.8594 354.7031 moveto +P$1h +24665.2031 352.5938 moveto +P$1k +24671.6719 355.2031 moveto +P$1l +24671.6719 354.2969 moveto +P$1m +24680.9375 355.4531 moveto +P$1y +24684.8594 361.625 moveto +P$1q +24689.3594 353.2344 moveto +P$27 +24688.1719 352.2656 moveto +P$28 +24698.6719 355.2031 moveto +P$1l +24698.6719 354.2969 moveto +P$1m +24707.9375 355.4531 moveto +P$1y +24710.2031 352.5938 moveto +P$1k +24714.125 351.8906 moveto +P$1g +24722.75 357.4688 moveto +P$1r +24721.6719 357.1406 moveto +P$1s +24726.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24553 372 moveto +178 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24553 380 moveto +178 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +151 48 24369.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +150 47 24370.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +149 46 24370.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +148 45 24371.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +147 44 24371.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +146 43 24372.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +145 42 24372.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +144 41 24373.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +143 40 24373.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +151 48 24365.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +151 48 24365.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +24380.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24380.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24383.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24402.5344 352.9375 moveto +P$14 +24406.4719 355.2031 moveto +P$1l +24406.4719 354.2969 moveto +P$1m +24417.3938 357.0469 moveto +P$1d +24421.0031 352.5938 moveto +P$1k +24430.55 357.4688 moveto +P$1r +24429.4719 357.1406 moveto +P$1s +24438.3938 357.0469 moveto +P$1d +24442.0031 352.5938 moveto +P$1k +24445.9719 352.2656 moveto +P$2i +24450.0031 352.5938 moveto +P$1k +24459.55 357.4688 moveto +P$1r +24458.4719 357.1406 moveto +P$1s +24467.0344 355.7188 moveto +P$1a +24474.1594 353.2344 moveto +P$27 +24472.9719 352.2656 moveto +P$28 +24483.4719 355.2031 moveto +P$1l +24483.4719 354.2969 moveto +P$1m +24492.7375 355.4531 moveto +P$1y +24495.0031 352.5938 moveto +P$1k +24498.925 351.8906 moveto +P$1g +24507.55 357.4688 moveto +P$1r +24506.4719 357.1406 moveto +P$1s +24511.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24366.8 372 moveto +149 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24366.8 380 moveto +149 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +178 48 24156.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +177 47 24157 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +176 46 24157.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +175 45 24158 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +174 44 24158.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +173 43 24159 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +172 42 24159.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +171 41 24160 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +170 40 24160.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +178 48 24152.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +178 48 24152.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +24167.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24167.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24170.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24189.2344 352.9375 moveto +P$14 +24193.1719 355.2031 moveto +P$1l +24193.1719 354.2969 moveto +P$1m +24204.0938 357.0469 moveto +P$1d +24207.7031 352.5938 moveto +P$1k +24217.25 357.4688 moveto +P$1r +24216.1719 357.1406 moveto +P$1s +24225.0938 357.0469 moveto +P$1d +24228.7031 352.5938 moveto +P$1k +24237.9219 352.5469 moveto +P$1z +24246.25 357.4688 moveto +P$1r +24245.1719 357.1406 moveto +P$1s +24253.3594 354.7031 moveto +P$1h +24256.7031 352.5938 moveto +P$1k +24260.625 354.4531 moveto +P$1b +24260.625 351.8906 moveto +P$1c +24266.1719 355.2031 moveto +P$1l +24266.1719 354.2969 moveto +P$1m +24277.0938 357.0469 moveto +P$1d +24283.8125 354.6406 moveto +P$1o +24287.8594 353.2344 moveto +P$27 +24286.6719 352.2656 moveto +P$28 +24297.1719 355.2031 moveto +P$1l +24297.1719 354.2969 moveto +P$1m +24306.4375 355.4531 moveto +P$1y +24308.7031 352.5938 moveto +P$1k +24312.625 351.8906 moveto +P$1g +24321.25 357.4688 moveto +P$1r +24320.1719 357.1406 moveto +P$1s +24324.7031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24153.5 372 moveto +176 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24153.5 380 moveto +176 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +103 48 24017.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +102 47 24018.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +101 46 24018.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +100 45 24019.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +99 44 24019.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +98 43 24020.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +97 42 24020.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +96 41 24021.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +95 40 24021.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +103 48 24013.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +103 48 24013.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +24028.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24028.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24031.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +24042.7688 352.2656 moveto +P$1p +24053.9094 357.7188 moveto +P$1i +24056.0656 357.2656 moveto +P$1j +24063.1125 354.6406 moveto +P$1o +24065.8938 351.8906 moveto +P$2n +24074.1594 353.2344 moveto +P$27 +24072.9719 352.2656 moveto +P$28 +24083.4719 355.2031 moveto +P$1l +24083.4719 354.2969 moveto +P$1m +24092.7375 355.4531 moveto +P$1y +24095.0031 352.5938 moveto +P$1k +24098.925 351.8906 moveto +P$1g +24107.55 357.4688 moveto +P$1r +24106.4719 357.1406 moveto +P$1s +24111.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24014.8 372 moveto +101 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24014.8 380 moveto +101 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +163 48 12495.8 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +162 47 12496.3 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +161 46 12496.8 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +160 45 12497.3 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +159 44 12497.8 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +158 43 12498.3 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +157 42 12498.8 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +156 41 12499.3 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +155 40 12499.8 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +163 48 12491.8 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +163 48 12491.8 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +12506.8 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12506.8 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12509.7688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12523.1594 229.2344 moveto +P$27 +12521.9719 228.2656 moveto +P$28 +12529.8156 234.4219 moveto +P$1w +12532.5344 230.2969 moveto +P$1x +12542.6438 233.7344 moveto +P$1f +12538.9719 231.4531 moveto +P$22 +12545.925 227.8906 moveto +P$1g +12548.925 230.4531 moveto +P$1b +12548.925 227.8906 moveto +P$1c +12556.6594 230.7031 moveto +P$1h +12560.1594 229.2344 moveto +P$27 +12558.9719 228.2656 moveto +P$28 +12572.55 233.4688 moveto +P$1r +12571.4719 233.1406 moveto +P$1s +12578.7375 231.4531 moveto +P$1y +12584.1125 230.6406 moveto +P$1o +12589.4719 231.2031 moveto +P$1l +12589.4719 230.2969 moveto +P$1m +12600.3938 233.0469 moveto +P$1d +12605.9094 233.7188 moveto +P$1i +12608.0656 233.2656 moveto +P$1j +12610.925 227.8906 moveto +P$1g +12615.1594 229.2344 moveto +P$27 +12613.9719 228.2656 moveto +P$28 +12625.7375 231.4531 moveto +P$1y +12629.4719 231.2031 moveto +P$1l +12629.4719 230.2969 moveto +P$1m +12638.2531 227.8906 moveto +P$2o +12638.925 230.4531 moveto +P$1b +12638.925 227.8906 moveto +P$1c +12641.925 227.8906 moveto +P$1g +12650.55 233.4688 moveto +P$1r +12649.4719 233.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12492.8 248 moveto +161 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12492.8 256 moveto +161 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +105 48 25997.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +104 47 25998.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +103 46 25998.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +102 45 25999.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +101 44 25999.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +100 43 26000.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +99 42 26000.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +98 41 26001.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +97 40 26001.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +105 48 25993.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +105 48 25993.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26008.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26008.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26011.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26027.5344 105.0625 moveto +P$20 +26029.1906 112.8594 moveto +P$2w +26032.8156 110.4219 moveto +P$1w +26035.5344 106.2969 moveto +P$1x +26046.55 109.4688 moveto +P$1r +26045.4719 109.1406 moveto +P$1s +26048.8156 110.4219 moveto +P$1w +26051.5344 106.2969 moveto +P$1x +26062.55 109.4688 moveto +P$1r +26061.4719 109.1406 moveto +P$1s +26064.9719 104.2656 moveto +P$26 +26078.3938 109.0469 moveto +P$1d +26082.0031 104.5938 moveto +P$1k +26089.7375 107.4531 moveto +P$1y +26093.6594 113.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25994.8 124 moveto +103 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25994.8 132 moveto +103 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +114 48 25848 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +113 47 25848.5 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +112 46 25849 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +111 45 25849.5 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +110 44 25850 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +109 43 25850.5 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +108 42 25851 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +107 41 25851.5 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +106 40 25852 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +114 48 25844 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +114 48 25844 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25859 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25859 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25861.9688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25875.3594 105.2344 moveto +P$27 +25874.1719 104.2656 moveto +P$28 +25882.0156 110.4219 moveto +P$1w +25884.7344 106.2969 moveto +P$1x +25894.8438 109.7344 moveto +P$1f +25891.1719 107.4531 moveto +P$22 +25898.125 103.8906 moveto +P$1g +25901.125 106.4531 moveto +P$1b +25901.125 103.8906 moveto +P$1c +25908.3125 106.6406 moveto +P$1o +25916.5938 109.0469 moveto +P$2d +25924.75 109.4688 moveto +P$1r +25923.6719 109.1406 moveto +P$1s +25931.4531 107.4531 moveto +P$18 +25927.7813 109.7344 moveto +P$19 +25935.1719 104.2656 moveto +P$2s +25942.125 106.4531 moveto +P$1b +25942.125 103.8906 moveto +P$1c +25945.125 103.8906 moveto +P$1g +25953.75 109.4688 moveto +P$1r +25952.6719 109.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25845 124 moveto +112 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25845 132 moveto +112 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +117 48 25695.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +116 47 25696.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +115 46 25696.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +114 45 25697.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +113 44 25697.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +112 43 25698.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +111 42 25698.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +110 41 25699.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +109 40 25699.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +117 48 25691.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +117 48 25691.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25706.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25706.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25709.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25723.1594 105.2344 moveto +P$27 +25721.9719 104.2656 moveto +P$28 +25729.8156 110.4219 moveto +P$1w +25732.5344 106.2969 moveto +P$1x +25742.6438 109.7344 moveto +P$1f +25738.9719 107.4531 moveto +P$22 +25745.925 103.8906 moveto +P$1g +25748.925 106.4531 moveto +P$1b +25748.925 103.8906 moveto +P$1c +25756.1125 106.6406 moveto +P$1o +25764.3938 109.0469 moveto +P$2d +25772.55 109.4688 moveto +P$1r +25771.4719 109.1406 moveto +P$1s +25779.2531 107.4531 moveto +P$18 +25775.5813 109.7344 moveto +P$19 +25782.9719 104.2656 moveto +P$2j +25788.925 106.4531 moveto +P$1b +25788.925 103.8906 moveto +P$1c +25797.3938 109.0469 moveto +P$1d +25799.8938 103.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25692.8 124 moveto +115 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25692.8 132 moveto +115 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +93 48 8802.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +92 47 8803.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +91 46 8803.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +90 45 8804.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +89 44 8804.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +88 43 8805.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +87 42 8805.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +86 41 8806.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +85 40 8806.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +93 48 8798.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +93 48 8798.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8813.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8813.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8816.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8835.4844 600.9375 moveto +P$14 +8839.4219 603.2031 moveto +P$1l +8839.4219 602.2969 moveto +P$1m +8844.7656 606.4219 moveto +P$1w +8847.4844 602.2969 moveto +P$1x +8858.3438 605.0469 moveto +P$1d +8865.6094 602.7031 moveto +P$1h +8867.875 602.4531 moveto +P$1b +8867.875 599.8906 moveto +P$1c +8870.875 599.8906 moveto +P$1g +8873.875 599.8906 moveto +P$1g +8879.4219 603.2031 moveto +P$1l +8879.4219 602.2969 moveto +P$1m +8888.6875 603.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8799.75 620 moveto +91 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8799.75 628 moveto +91 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +76 48 8807 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +75 47 8807.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +74 46 8808 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +73 45 8808.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +72 44 8809 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +71 43 8809.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +70 42 8810 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +69 41 8810.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +68 40 8811 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +76 48 8803 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +76 48 8803 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8818 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8818 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8820.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8834.3594 477.2344 moveto +P$27 +8833.1719 476.2656 moveto +P$28 +8846.75 481.4688 moveto +P$1r +8845.6719 481.1406 moveto +P$1s +8852.9375 479.4531 moveto +P$1y +8858.3125 478.6406 moveto +P$1o +8863.6719 479.2031 moveto +P$1l +8863.6719 478.2969 moveto +P$1m +8874.5938 481.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8804 496 moveto +74 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8804 504 moveto +74 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +55 48 25342.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +54 47 25343.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +53 46 25343.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +52 45 25344.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +51 44 25344.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +50 43 25345.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +49 42 25345.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +48 41 25346.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +47 40 25346.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +55 48 25338.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +55 48 25338.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25353.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25353.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25356.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25368.9719 352.2656 moveto +P$2s +25378.9094 357.7188 moveto +P$1i +25381.0656 357.2656 moveto +P$1j +25384.5813 357.7344 moveto +P$19 +25388.2531 360.0313 moveto +P$2y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25339.8 372 moveto +53 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25339.8 380 moveto +53 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +73 48 25181.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +72 47 25182.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +71 46 25182.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +70 45 25183.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +69 44 25183.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +68 43 25184.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +67 42 25184.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +66 41 25185.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +65 40 25185.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +73 48 25177.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +73 48 25177.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25192.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25192.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25195.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25211.5344 477.0625 moveto +P$20 +25213.1906 484.8594 moveto +P$2w +25219.9094 477.4375 moveto +P$16 +25219.2375 476.2656 moveto +P$17 +25226.1594 477.2344 moveto +P$27 +25224.9719 476.2656 moveto +P$28 +25235.9094 481.7188 moveto +P$1i +25238.0656 481.2656 moveto +P$1j +25240.925 478.4531 moveto +P$1b +25240.925 475.8906 moveto +P$1c +25247.7375 479.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25178.8 496 moveto +71 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25178.8 504 moveto +71 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +160 48 25147 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +159 47 25147.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +158 46 25148 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +157 45 25148.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +156 44 25149 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +155 43 25149.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +154 42 25150 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +153 41 25150.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +152 40 25151 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +160 48 25143 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +160 48 25143 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25158 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25158 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25160.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25173.1719 352.2656 moveto +P$2s +25183.1094 357.7188 moveto +P$1i +25185.2656 357.2656 moveto +P$1j +25188.7813 357.7344 moveto +P$19 +25192.4531 360.0313 moveto +P$2y +25199.7344 353.0625 moveto +P$20 +25201.3906 360.8594 moveto +P$2w +25205.0156 358.4219 moveto +P$1w +25207.7344 354.2969 moveto +P$1x +25218.75 357.4688 moveto +P$1r +25217.6719 357.1406 moveto +P$1s +25225.3125 354.6406 moveto +P$1o +25229.2031 352.5938 moveto +P$1k +25233.125 354.4531 moveto +P$1b +25233.125 351.8906 moveto +P$1c +25238.6719 355.2031 moveto +P$1l +25238.6719 354.2969 moveto +P$1m +25249.5938 357.0469 moveto +P$1d +25256.3125 354.6406 moveto +P$1o +25260.3594 353.2344 moveto +P$27 +25259.1719 352.2656 moveto +P$28 +25269.6719 355.2031 moveto +P$1l +25269.6719 354.2969 moveto +P$1m +25278.9375 355.4531 moveto +P$1y +25281.2031 352.5938 moveto +P$1k +25285.125 351.8906 moveto +P$1g +25293.75 357.4688 moveto +P$1r +25292.6719 357.1406 moveto +P$1s +25297.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25144 372 moveto +158 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25144 380 moveto +158 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +74 48 25038 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +73 47 25038.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +72 46 25039 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +71 45 25039.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +70 44 25040 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +69 43 25040.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +68 42 25041 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +67 41 25041.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +66 40 25042 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +74 48 25034 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +74 48 25034 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25049 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25049 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25051.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25065.3594 353.2344 moveto +P$27 +25064.1719 352.2656 moveto +P$28 +25074.6719 355.2031 moveto +P$1l +25074.6719 354.2969 moveto +P$1m +25083.9375 355.4531 moveto +P$1y +25086.2031 352.5938 moveto +P$1k +25090.125 351.8906 moveto +P$1g +25098.75 357.4688 moveto +P$1r +25097.6719 357.1406 moveto +P$1s +25102.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25035 372 moveto +72 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25035 380 moveto +72 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +162 48 25344 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +161 47 25344.5 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +160 46 25345 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +159 45 25345.5 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +158 44 25346 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +157 43 25346.5 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +156 42 25347 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +155 41 25347.5 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +154 40 25348 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +162 48 25340 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +162 48 25340 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25355 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25355 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25357.9688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25376.7344 1128.9375 moveto +P$14 +25380.6719 1131.2031 moveto +P$1l +25380.6719 1130.2969 moveto +P$1m +25391.5938 1133.0469 moveto +P$1d +25397.4531 1127.8906 moveto +P$2o +25398.125 1130.4531 moveto +P$1b +25398.125 1127.8906 moveto +P$1c +25404.9375 1131.4531 moveto +P$1y +25411.2344 1131.7188 moveto +P$1a +25417.1719 1128.2656 moveto +P$26 +25430.2344 1131.7188 moveto +P$1a +25439.1094 1133.7188 moveto +P$1i +25441.2656 1133.2656 moveto +P$1j +25444.125 1130.4531 moveto +P$1b +25444.125 1127.8906 moveto +P$1c +25447.125 1127.8906 moveto +P$1g +25450.1719 1128.2656 moveto +P$2j +25456.125 1130.4531 moveto +P$1b +25456.125 1127.8906 moveto +P$1c +25463.3125 1130.6406 moveto +P$1o +25467.2031 1128.5938 moveto +P$1k +25476.75 1133.4688 moveto +P$1r +25475.6719 1133.1406 moveto +P$1s +25484.5938 1133.0469 moveto +P$1d +25492.75 1133.4688 moveto +P$1r +25491.6719 1133.1406 moveto +P$1s +25498.9375 1131.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25341 1148 moveto +160 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25341 1156 moveto +160 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +181 48 25127.8 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +180 47 25128.3 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +179 46 25128.8 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +178 45 25129.3 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +177 44 25129.8 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +176 43 25130.3 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +175 42 25130.8 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +174 41 25131.3 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +173 40 25131.8 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +181 48 25123.8 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +181 48 25123.8 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25138.8 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25138.8 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25141.7688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25160.5344 1128.9375 moveto +P$14 +25164.4719 1131.2031 moveto +P$1l +25164.4719 1130.2969 moveto +P$1m +25175.3938 1133.0469 moveto +P$1d +25181.2531 1127.8906 moveto +P$2o +25181.925 1130.4531 moveto +P$1b +25181.925 1127.8906 moveto +P$1c +25188.7375 1131.4531 moveto +P$1y +25195.0344 1131.7188 moveto +P$1a +25205.1281 1132.9063 moveto +P$2a +25202.1594 1129.2344 moveto +P$2b +25214.55 1133.4688 moveto +P$1r +25213.4719 1133.1406 moveto +P$1s +25221.2531 1131.4531 moveto +P$18 +25217.5813 1133.7344 moveto +P$19 +25224.925 1130.4531 moveto +P$1b +25224.925 1127.8906 moveto +P$1c +25231.7375 1131.4531 moveto +P$1y +25238.55 1133.4688 moveto +P$1r +25237.4719 1133.1406 moveto +P$1s +25245.6594 1130.7031 moveto +P$1h +25249.0031 1128.5938 moveto +P$1k +25252.9719 1128.2656 moveto +P$2j +25258.925 1130.4531 moveto +P$1b +25258.925 1127.8906 moveto +P$1c +25266.1125 1130.6406 moveto +P$1o +25270.0031 1128.5938 moveto +P$1k +25279.55 1133.4688 moveto +P$1r +25278.4719 1133.1406 moveto +P$1s +25287.3938 1133.0469 moveto +P$1d +25295.55 1133.4688 moveto +P$1r +25294.4719 1133.1406 moveto +P$1s +25301.7375 1131.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25124.8 1148 moveto +179 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25124.8 1156 moveto +179 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +198 48 26114 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +197 47 26114.5 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +196 46 26115 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +195 45 26115.5 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +194 44 26116 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +193 43 26116.5 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +192 42 26117 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +191 41 26117.5 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +190 40 26118 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +198 48 26110 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +198 48 26110 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26125 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26125 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26127.9688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26144.3281 1132.9063 moveto +P$2a +26141.3594 1129.2344 moveto +P$2b +26153.75 1133.4688 moveto +P$1r +26152.6719 1133.1406 moveto +P$1s +26161.2344 1131.7188 moveto +P$1a +26169.6719 1131.2031 moveto +P$1l +26169.6719 1130.2969 moveto +P$1m +26176.2031 1128.5938 moveto +P$1k +26185.75 1133.4688 moveto +P$1r +26184.6719 1133.1406 moveto +P$1s +26193.4219 1128.5469 moveto +P$1z +26201.75 1133.4688 moveto +P$1r +26200.6719 1133.1406 moveto +P$1s +26207.9375 1131.4531 moveto +P$1y +26208.3594 1130.4531 moveto +P$2f +26220.75 1133.4688 moveto +P$1r +26219.6719 1133.1406 moveto +P$1s +26226.9375 1131.4531 moveto +P$1y +26229.3594 1129.2344 moveto +P$27 +26228.1719 1128.2656 moveto +P$28 +26238.6719 1131.2031 moveto +P$1l +26238.6719 1130.2969 moveto +P$1m +26248.3125 1130.6406 moveto +P$1o +26252.2031 1128.5938 moveto +P$1k +26256.1719 1128.2656 moveto +P$2j +26262.125 1130.4531 moveto +P$1b +26262.125 1127.8906 moveto +P$1c +26269.3125 1130.6406 moveto +P$1o +26273.2031 1128.5938 moveto +P$1k +26282.75 1133.4688 moveto +P$1r +26281.6719 1133.1406 moveto +P$1s +26290.5938 1133.0469 moveto +P$1d +26298.75 1133.4688 moveto +P$1r +26297.6719 1133.1406 moveto +P$1s +26304.9375 1131.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26111 1148 moveto +196 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26111 1156 moveto +196 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +156 48 25923 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +155 47 25923.5 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +154 46 25924 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +153 45 25924.5 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +152 44 25925 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +151 43 25925.5 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +150 42 25926 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +149 41 25926.5 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +148 40 25927 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +156 48 25919 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +156 48 25919 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25934 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25934 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25936.9688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25954.4219 1128.5469 moveto +P$1z +25957.125 1130.4531 moveto +P$1b +25957.125 1127.8906 moveto +P$1c +25965.2344 1131.7188 moveto +P$1a +25972.1719 1136.0313 moveto +P$1e +25975.8438 1133.7344 moveto +P$1f +25979.125 1127.8906 moveto +P$1g +25987.75 1133.4688 moveto +P$1r +25986.6719 1133.1406 moveto +P$1s +25990.1719 1128.2656 moveto +P$26 +26003.2344 1131.7188 moveto +P$1a +26012.1094 1133.7188 moveto +P$1i +26014.2656 1133.2656 moveto +P$1j +26017.125 1130.4531 moveto +P$1b +26017.125 1127.8906 moveto +P$1c +26020.125 1127.8906 moveto +P$1g +26023.1719 1128.2656 moveto +P$2j +26029.125 1130.4531 moveto +P$1b +26029.125 1127.8906 moveto +P$1c +26036.3125 1130.6406 moveto +P$1o +26040.2031 1128.5938 moveto +P$1k +26049.75 1133.4688 moveto +P$1r +26048.6719 1133.1406 moveto +P$1s +26057.5938 1133.0469 moveto +P$1d +26065.75 1133.4688 moveto +P$1r +26064.6719 1133.1406 moveto +P$1s +26071.9375 1131.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25920 1148 moveto +154 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25920 1156 moveto +154 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +173 48 25714.8 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +172 47 25715.3 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +171 46 25715.8 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +170 45 25716.3 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +169 44 25716.8 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +168 43 25717.3 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +167 42 25717.8 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +166 41 25718.3 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +165 40 25718.8 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +173 48 25710.8 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +173 48 25710.8 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25725.8 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25725.8 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25728.7688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25739.7688 1128.2656 moveto +P$1p +25753.55 1133.4688 moveto +P$1r +25752.4719 1133.1406 moveto +P$1s +25761.0344 1131.7188 moveto +P$1a +25767.9719 1136.0313 moveto +P$1e +25771.6438 1133.7344 moveto +P$1f +25774.925 1127.8906 moveto +P$1g +25780.9094 1133.7188 moveto +P$1i +25783.0656 1133.2656 moveto +P$1j +25787.0031 1128.5938 moveto +P$1k +25796.55 1133.4688 moveto +P$1r +25795.4719 1133.1406 moveto +P$1s +25798.9719 1128.2656 moveto +P$26 +25812.0344 1131.7188 moveto +P$1a +25820.9094 1133.7188 moveto +P$1i +25823.0656 1133.2656 moveto +P$1j +25825.925 1130.4531 moveto +P$1b +25825.925 1127.8906 moveto +P$1c +25828.925 1127.8906 moveto +P$1g +25831.9719 1128.2656 moveto +P$2j +25837.925 1130.4531 moveto +P$1b +25837.925 1127.8906 moveto +P$1c +25845.1125 1130.6406 moveto +P$1o +25849.0031 1128.5938 moveto +P$1k +25858.55 1133.4688 moveto +P$1r +25857.4719 1133.1406 moveto +P$1s +25866.3938 1133.0469 moveto +P$1d +25874.55 1133.4688 moveto +P$1r +25873.4719 1133.1406 moveto +P$1s +25880.7375 1131.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25711.8 1148 moveto +171 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25711.8 1156 moveto +171 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +138 48 25541 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +137 47 25541.5 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +136 46 25542 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +135 45 25542.5 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +134 44 25543 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +133 43 25543.5 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +132 42 25544 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +131 41 25544.5 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +130 40 25545 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +138 48 25537 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +138 48 25537 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25552 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25552 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25554.9688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25566.75 1128.2656 moveto +P$2x +25574.1719 1128.2656 moveto +P$2m +25584.1719 1128.2656 moveto +P$2j +25590.1719 1128.2656 moveto +P$26 +25603.2344 1131.7188 moveto +P$1a +25612.1094 1133.7188 moveto +P$1i +25614.2656 1133.2656 moveto +P$1j +25617.125 1130.4531 moveto +P$1b +25617.125 1127.8906 moveto +P$1c +25620.125 1127.8906 moveto +P$1g +25623.1719 1128.2656 moveto +P$2j +25629.125 1130.4531 moveto +P$1b +25629.125 1127.8906 moveto +P$1c +25636.3125 1130.6406 moveto +P$1o +25640.2031 1128.5938 moveto +P$1k +25649.75 1133.4688 moveto +P$1r +25648.6719 1133.1406 moveto +P$1s +25657.5938 1133.0469 moveto +P$1d +25665.75 1133.4688 moveto +P$1r +25664.6719 1133.1406 moveto +P$1s +25671.9375 1131.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25538 1148 moveto +136 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25538 1156 moveto +136 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +106 48 26368.5 1120 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +105 47 26369 1120.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +104 46 26369.5 1121 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +103 45 26370 1121.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +102 44 26370.5 1122 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +101 43 26371 1122.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +100 42 26371.5 1123 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +99 41 26372 1123.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +98 40 26372.5 1124 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +106 48 26364.5 1116 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +106 48 26364.5 1116 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26379.5 1132 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26379.5 1132 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26382.4688 1137.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26395.8594 1129.2344 moveto +P$27 +26394.6719 1128.2656 moveto +P$28 +26403.8594 1129.2344 moveto +P$2p +26402.6719 1128.2656 moveto +P$2q +26411.6719 1128.2656 moveto +P$2s +26418.6719 1128.2656 moveto +P$2j +26424.625 1130.4531 moveto +P$1b +26424.625 1127.8906 moveto +P$1c +26431.8125 1130.6406 moveto +P$1o +26435.7031 1128.5938 moveto +P$1k +26445.25 1133.4688 moveto +P$1r +26444.1719 1133.1406 moveto +P$1s +26453.0938 1133.0469 moveto +P$1d +26461.25 1133.4688 moveto +P$1r +26460.1719 1133.1406 moveto +P$1s +26467.4375 1131.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26365.5 1148 moveto +104 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26365.5 1156 moveto +104 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +71 48 9803.75 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +70 47 9804.25 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +69 46 9804.75 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +68 45 9805.25 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +67 44 9805.75 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +66 43 9806.25 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +65 42 9806.75 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +64 41 9807.25 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +63 40 9807.75 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +71 48 9799.75 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +71 48 9799.75 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9814.75 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9814.75 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9817.7188 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9829.9219 352.2656 moveto +P$2s +9839.4219 355.2031 moveto +P$1l +9839.4219 354.2969 moveto +P$1m +9848.6875 355.4531 moveto +P$1y +9849.7656 358.4219 moveto +P$1w +9852.4844 354.2969 moveto +P$1x +9862.9844 355.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9800.75 372 moveto +69 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9800.75 380 moveto +69 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +149 48 9765.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +148 47 9766.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +147 46 9766.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +146 45 9767.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +145 44 9767.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +144 43 9768.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +143 42 9768.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +142 41 9769.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +141 40 9769.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +149 48 9761.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +149 48 9761.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9776.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9776.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9779.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9791.9219 476.2656 moveto +P$2s +9801.4219 479.2031 moveto +P$1l +9801.4219 478.2969 moveto +P$1m +9810.6875 479.4531 moveto +P$1y +9811.7656 482.4219 moveto +P$1w +9814.4844 478.2969 moveto +P$1x +9824.9844 479.7188 moveto +P$1a +9836.1719 476.5469 moveto +P$1z +9838.7656 482.4219 moveto +P$1w +9841.4844 478.2969 moveto +P$1x +9851.5938 481.7344 moveto +P$1f +9847.9219 479.4531 moveto +P$22 +9859.0625 478.6406 moveto +P$1o +9866.6094 478.7031 moveto +P$1h +9872.6875 479.4531 moveto +P$1y +9873.875 478.4531 moveto +P$1b +9873.875 475.8906 moveto +P$1c +9877.9219 484.0313 moveto +P$1e +9881.5938 481.7344 moveto +P$1f +9885.9531 476.5938 moveto +P$1k +9889.875 478.4531 moveto +P$1b +9889.875 475.8906 moveto +P$1c +9895.4219 479.2031 moveto +P$1l +9895.4219 478.2969 moveto +P$1m +9906.3438 481.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9762.75 496 moveto +147 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9762.75 504 moveto +147 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +65 48 9949.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +64 47 9950.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +63 46 9950.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +62 45 9951.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +61 44 9951.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +60 43 9952.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +59 42 9952.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +58 41 9953.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +57 40 9953.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +65 48 9945.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +65 48 9945.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9960.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9960.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9963.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9975.9219 476.2656 moveto +P$2i +9984.3438 481.0469 moveto +P$1d +9991.5938 481.7344 moveto +P$1f +9987.9219 479.4531 moveto +P$22 +9997.4219 479.2031 moveto +P$1l +9997.4219 478.2969 moveto +P$1m +10008.3438 478.4531 moveto +P$2c +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9946.75 496 moveto +63 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9946.75 504 moveto +63 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +107 48 9457.75 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +106 47 9458.25 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +105 46 9458.75 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +104 45 9459.25 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +103 44 9459.75 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +102 43 9460.25 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +101 42 9460.75 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +100 41 9461.25 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +99 40 9461.75 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +107 48 9453.75 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +107 48 9453.75 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9468.75 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9468.75 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9471.7188 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9483.9219 476.2656 moveto +P$2i +9492.3438 481.0469 moveto +P$1d +9499.5938 481.7344 moveto +P$1f +9495.9219 479.4531 moveto +P$22 +9505.4219 479.2031 moveto +P$1l +9505.4219 478.2969 moveto +P$1m +9516.3438 478.4531 moveto +P$2c +9518.1094 477.2344 moveto +P$27 +9516.9219 476.2656 moveto +P$28 +9527.4219 479.2031 moveto +P$1l +9527.4219 478.2969 moveto +P$1m +9536.6875 479.4531 moveto +P$1y +9538.9531 476.5938 moveto +P$1k +9542.875 475.8906 moveto +P$1g +9551.5 481.4688 moveto +P$1r +9550.4219 481.1406 moveto +P$1s +9554.9531 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9454.75 496 moveto +105 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9454.75 504 moveto +105 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +136 48 9632 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +135 47 9632.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +134 46 9633 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +133 45 9633.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +132 44 9634 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +131 43 9634.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +130 42 9635 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +129 41 9635.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +128 40 9636 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +136 48 9628 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +136 48 9628 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9643 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9643 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9645.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9658.1719 352.2656 moveto +P$2m +9670.8594 361.625 moveto +P$1q +9674.1719 352.2656 moveto +P$2s +9683.6719 355.2031 moveto +P$1l +9683.6719 354.2969 moveto +P$1m +9692.9375 355.4531 moveto +P$1y +9694.0156 358.4219 moveto +P$1w +9696.7344 354.2969 moveto +P$1x +9707.2344 355.7188 moveto +P$1a +9717.3125 354.6406 moveto +P$1o +9721.3594 353.2344 moveto +P$27 +9720.1719 352.2656 moveto +P$28 +9730.6719 355.2031 moveto +P$1l +9730.6719 354.2969 moveto +P$1m +9739.9375 355.4531 moveto +P$1y +9742.2031 352.5938 moveto +P$1k +9746.125 351.8906 moveto +P$1g +9754.75 357.4688 moveto +P$1r +9753.6719 357.1406 moveto +P$1s +9758.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9629 372 moveto 134 0 rlineto closepath stroke 1.5 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1661 380 moveto +9629 380 moveto 134 0 rlineto closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +60 48 9670.5 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +59 47 9671 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +58 46 9671.5 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +57 45 9672 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +56 44 9672.5 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +55 43 9673 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +54 42 9673.5 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +53 41 9674 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +52 40 9674.5 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +60 48 9666.5 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +60 48 9666.5 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9681.5 480 11 0 360 arc +closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1608.04 273.892 moveto -1619.49 279.651 1631.83 284.813 1644 288 curveto -1683.46 298.335 1972.05 283.888 2011 296 curveto -2039.53 304.871 2067.57 324.295 2087.01 339.956 curveto -stroke +9681.5 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9684.4688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9697.8594 477.2344 moveto +P$27 +9696.6719 476.2656 moveto +P$28 +9707.1719 479.2031 moveto +P$1l +9707.1719 478.2969 moveto +P$1m +9716.8125 478.6406 moveto +P$1o +9720.7031 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9667.5 496 moveto +58 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9667.5 504 moveto +58 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +154 48 9425 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +153 47 9425.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +152 46 9426 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +151 45 9426.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +150 44 9427 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +149 43 9427.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +148 42 9428 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +147 41 9428.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +146 40 9429 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +154 48 9421 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +154 48 9421 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9436 604 11 0 360 arc +closepath eofill 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.57 279.971 moveto --14.18 -15.753 rlineto -20.91 3.476 rlineto --6.73 12.277 rlineto -1604.57 279.971 lineto +9436 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9438.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9452.3594 601.2344 moveto +P$27 +9451.1719 600.2656 moveto +P$28 +9461.6719 603.2031 moveto +P$1l +9461.6719 602.2969 moveto +P$1m +9471.3125 602.6406 moveto +P$1o +9475.2031 600.5938 moveto +P$1k +9479.1719 600.2656 moveto +P$2s +9486.125 602.4531 moveto +P$1b +9486.125 599.8906 moveto +P$1c +9489.125 599.8906 moveto +P$1g +9497.75 605.4688 moveto +P$1r +9496.6719 605.1406 moveto +P$1s +9503.1094 601.4375 moveto +P$16 +9502.4375 600.2656 moveto +P$17 +9509.2031 600.5938 moveto +P$1k +9514.2031 600.5938 moveto +P$1k +9521.1094 605.7188 moveto +P$1i +9523.2656 605.2656 moveto +P$1j +9530.8594 602.7031 moveto +P$1h +9538.5938 605.0469 moveto +P$2d +9546.2344 603.7188 moveto +P$1a +9557.75 605.4688 moveto +P$1r +9556.6719 605.1406 moveto +P$1s +9565.5938 605.0469 moveto +P$1d +9569.2031 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9422 620 moveto +152 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9422 628 moveto +152 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +171 48 9614.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +170 47 9615.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +169 46 9615.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +168 45 9616.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +167 44 9616.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +166 43 9617.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +165 42 9617.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +164 41 9618.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +163 40 9618.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +171 48 9610.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +171 48 9610.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9625.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9625.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9628.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9642.1094 601.2344 moveto +P$27 +9640.9219 600.2656 moveto +P$28 +9651.4219 603.2031 moveto +P$1l +9651.4219 602.2969 moveto +P$1m +9661.0625 602.6406 moveto +P$1o +9664.9531 600.5938 moveto +P$1k +9668.9219 600.2656 moveto +P$2i +9676.9844 603.7188 moveto +P$1a +9685.8594 605.7188 moveto +P$1i +9688.0156 605.2656 moveto +P$1j +9695.2031 605.6563 moveto +P$2g +9696.2813 608.2031 moveto +P$2h +9704.5 605.4688 moveto +P$1r +9703.4219 605.1406 moveto +P$1s +9709.8594 601.4375 moveto +P$16 +9709.1875 600.2656 moveto +P$17 +9715.9531 600.5938 moveto +P$1k +9720.9531 600.5938 moveto +P$1k +9727.8594 605.7188 moveto +P$1i +9730.0156 605.2656 moveto +P$1j +9737.6094 602.7031 moveto +P$1h +9745.3438 605.0469 moveto +P$2d +9752.9844 603.7188 moveto +P$1a +9764.5 605.4688 moveto +P$1r +9763.4219 605.1406 moveto +P$1s +9772.3438 605.0469 moveto +P$1d +9775.9531 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9611.75 620 moveto +169 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9611.75 628 moveto +169 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +172 48 9425 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +171 47 9425.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +170 46 9426 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +169 45 9426.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +168 44 9427 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +167 43 9427.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +166 42 9428 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +165 41 9428.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +164 40 9429 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +172 48 9421 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +172 48 9421 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9436 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9436 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9438.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9455.3281 356.9063 moveto +P$2a +9452.3594 353.2344 moveto +P$2b +9464.75 357.4688 moveto +P$1r +9463.6719 357.1406 moveto +P$1s +9471.8594 354.7031 moveto +P$1h +9479.75 357.4688 moveto +P$1r +9478.6719 357.1406 moveto +P$1s +9487.5938 357.0469 moveto +P$1d +9491.2031 352.5938 moveto +P$1k +9496.3594 353.2344 moveto +P$27 +9495.1719 352.2656 moveto +P$28 +9505.6719 355.2031 moveto +P$1l +9505.6719 354.2969 moveto +P$1m +9515.3125 354.6406 moveto +P$1o +9519.2031 352.5938 moveto +P$1k +9523.125 354.4531 moveto +P$1b +9523.125 351.8906 moveto +P$1c +9531.5938 357.0469 moveto +P$1d +9538.4531 357.6563 moveto +P$2g +9539.5313 360.2031 moveto +P$2h +9546.3125 354.6406 moveto +P$1o +9550.3594 353.2344 moveto +P$27 +9549.1719 352.2656 moveto +P$28 +9559.6719 355.2031 moveto +P$1l +9559.6719 354.2969 moveto +P$1m +9568.9375 355.4531 moveto +P$1y +9571.2031 352.5938 moveto +P$1k +9575.125 351.8906 moveto +P$1g +9583.75 357.4688 moveto +P$1r +9582.6719 357.1406 moveto +P$1s +9587.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9422 372 moveto +170 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9422 380 moveto +170 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +154 48 9910 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +153 47 9910.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +152 46 9911 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +151 45 9911.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +150 44 9912 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +149 43 9912.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +148 42 9913 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +147 41 9913.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +146 40 9914 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +154 48 9906 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +154 48 9906 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9921 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9921 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9923.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9934.9688 352.2656 moveto +P$1p +9948.5938 357.0469 moveto +P$2d +9954.9375 355.4531 moveto +P$1y +9961.75 357.4688 moveto +P$1r +9960.6719 357.1406 moveto +P$1s +9967.1094 357.7188 moveto +P$1i +9969.2656 357.2656 moveto +P$1j +9976.4531 355.4531 moveto +P$18 +9972.7813 357.7344 moveto +P$19 +9985.4219 352.5469 moveto +P$1z +9988.0156 358.4219 moveto +P$1w +9990.7344 354.2969 moveto +P$1x +10000.8438 357.7344 moveto +P$1f +9997.1719 355.4531 moveto +P$22 +10008.3125 354.6406 moveto +P$1o +10015.8594 354.7031 moveto +P$1h +10021.9375 355.4531 moveto +P$1y +10023.125 354.4531 moveto +P$1b +10023.125 351.8906 moveto +P$1c +10027.1719 360.0313 moveto +P$1e +10030.8438 357.7344 moveto +P$1f +10035.2031 352.5938 moveto +P$1k +10039.125 354.4531 moveto +P$1b +10039.125 351.8906 moveto +P$1c +10044.6719 355.2031 moveto +P$1l +10044.6719 354.2969 moveto +P$1m +10055.5938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9907 372 moveto +152 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9907 380 moveto +152 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +148 48 15620 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +147 47 15620.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +146 46 15621 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +145 45 15621.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +144 44 15622 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +143 43 15622.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +142 42 15623 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +141 41 15623.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +140 40 15624 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +148 48 15616 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +148 48 15616 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15631 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15631 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15633.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15644.9688 476.2656 moveto +P$1p +15658.5938 481.0469 moveto +P$2d +15664.9375 479.4531 moveto +P$1y +15671.75 481.4688 moveto +P$1r +15670.6719 481.1406 moveto +P$1s +15677.1094 481.7188 moveto +P$1i +15679.2656 481.2656 moveto +P$1j +15686.4531 479.4531 moveto +P$18 +15682.7813 481.7344 moveto +P$19 +15695.75 481.4688 moveto +P$1r +15694.6719 481.1406 moveto +P$1s +15702.4531 479.4531 moveto +P$18 +15698.7813 481.7344 moveto +P$19 +15706.1719 476.2656 moveto +P$2m +15721.75 481.4688 moveto +P$1r +15720.6719 481.1406 moveto +P$1s +15728.3125 478.6406 moveto +P$1o +15735.3125 478.6406 moveto +P$1o +15741.1094 481.7188 moveto +P$1i +15743.2656 481.2656 moveto +P$1j +15750.4531 481.6563 moveto +P$2g +15751.5313 484.2031 moveto +P$2h +15759.75 481.4688 moveto +P$1r +15758.6719 481.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15617 496 moveto +146 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15617 504 moveto +146 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +76 48 15628 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +75 47 15628.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +74 46 15629 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +73 45 15629.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +72 44 15630 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +71 43 15630.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +70 42 15631 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +69 41 15631.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +68 40 15632 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +76 48 15624 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +76 48 15624 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15639 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15639 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15641.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15652.9688 352.2656 moveto +P$1p +15666.5938 357.0469 moveto +P$2d +15672.9375 355.4531 moveto +P$1y +15679.75 357.4688 moveto +P$1r +15678.6719 357.1406 moveto +P$1s +15685.1094 357.7188 moveto +P$1i +15687.2656 357.2656 moveto +P$1j +15694.4531 355.4531 moveto +P$18 +15690.7813 357.7344 moveto +P$19 +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15625 372 moveto +74 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15625 380 moveto +74 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +88 48 15477.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +87 47 15478 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +86 46 15478.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +85 45 15479 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +84 44 15479.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +83 43 15480 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +82 42 15480.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +81 41 15481 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +80 40 15481.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +88 48 15473.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +88 48 15473.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15488.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15488.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15491.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15503.6719 352.2656 moveto +P$2m +15519.25 357.4688 moveto +P$1r +15518.1719 357.1406 moveto +P$1s +15525.8125 354.6406 moveto +P$1o +15532.8125 354.6406 moveto +P$1o +15538.6094 357.7188 moveto +P$1i +15540.7656 357.2656 moveto +P$1j +15547.9531 357.6563 moveto +P$2g +15549.0313 360.2031 moveto +P$2h +15557.25 357.4688 moveto +P$1r +15556.1719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15474.5 372 moveto +86 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15474.5 380 moveto +86 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +114 48 15471 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +113 47 15471.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +112 46 15472 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +111 45 15472.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +110 44 15473 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +109 43 15473.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +108 42 15474 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +107 41 15474.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +106 40 15475 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +114 48 15467 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +114 48 15467 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15482 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15482 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15484.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15497.1719 476.2656 moveto +P$2m +15512.75 481.4688 moveto +P$1r +15511.6719 481.1406 moveto +P$1s +15519.3125 478.6406 moveto +P$1o +15526.3125 478.6406 moveto +P$1o +15532.1094 481.7188 moveto +P$1i +15534.2656 481.2656 moveto +P$1j +15541.4531 481.6563 moveto +P$2g +15542.5313 484.2031 moveto +P$2h +15550.75 481.4688 moveto +P$1r +15549.6719 481.1406 moveto +P$1s +15554.3594 477.2344 moveto +P$27 +15553.1719 476.2656 moveto +P$28 +15564.1094 481.7188 moveto +P$1i +15566.2656 481.2656 moveto +P$1j +15572.9375 479.4531 moveto +P$1y +15575.2031 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15468 496 moveto +112 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15468 504 moveto +112 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +64 48 15803 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +63 47 15803.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +62 46 15804 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +61 45 15804.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +60 44 15805 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +59 43 15805.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +58 42 15806 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +57 41 15806.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +56 40 15807 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +64 48 15799 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +64 48 15799 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +15814 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15814 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15816.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +15830.3594 477.2344 moveto +P$27 +15829.1719 476.2656 moveto +P$28 +15840.1094 481.7188 moveto +P$1i +15842.2656 481.2656 moveto +P$1j +15848.9375 479.4531 moveto +P$1y +15851.2031 476.5938 moveto +P$1k +15857.8594 485.625 moveto +P$1q +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15800 496 moveto +62 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15800 504 moveto +62 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +143 48 10120.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +142 47 10121.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +141 46 10121.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +140 45 10122.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +139 44 10122.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +138 43 10123.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +137 42 10123.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +136 41 10124.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +135 40 10124.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +143 48 10116.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +143 48 10116.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +10131.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10131.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10134.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +10146.9719 476.2656 moveto +P$2j +10152.925 478.4531 moveto +P$1b +10152.925 475.8906 moveto +P$1c +10159.2531 475.8906 moveto +P$2o +10165.55 481.4688 moveto +P$1r +10164.4719 481.1406 moveto +P$1s +10172.6594 478.7031 moveto +P$1h +10177.6594 485.625 moveto +P$1q +10185.6594 478.7031 moveto +P$1h +10187.925 475.8906 moveto +P$1g +10196.55 481.4688 moveto +P$1r +10195.4719 481.1406 moveto +P$1s +10200.1594 477.2344 moveto +P$2p +10198.9719 476.2656 moveto +P$2q +10213.55 481.4688 moveto +P$1r +10212.4719 481.1406 moveto +P$1s +10219.2531 475.8906 moveto +P$2o +10219.925 478.4531 moveto +P$1b +10219.925 475.8906 moveto +P$1c +10228.3938 481.0469 moveto +P$1d +10230.925 478.4531 moveto +P$1b +10230.925 475.8906 moveto +P$1c +10235.0031 476.5938 moveto +P$1k +10238.925 478.4531 moveto +P$1b +10238.925 475.8906 moveto +P$1c +10244.4719 479.2031 moveto +P$1l +10244.4719 478.2969 moveto +P$1m +10255.3938 481.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10117.8 496 moveto +141 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10117.8 504 moveto +141 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +72 48 26990 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +71 47 26990.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +70 46 26991 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +69 45 26991.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +68 44 26992 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +67 43 26992.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +66 42 26993 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +65 41 26993.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +64 40 26994 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +72 48 26986 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +72 48 26986 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27001 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27001 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27003.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27017.3594 601.2344 moveto +P$2p +27016.1719 600.2656 moveto +P$2q +27025.125 602.4531 moveto +P$1b +27025.125 599.8906 moveto +P$1c +27032.4531 605.6563 moveto +P$2g +27033.5313 608.2031 moveto +P$2h +27041.75 605.4688 moveto +P$1r +27040.6719 605.1406 moveto +P$1s +27048.3125 602.6406 moveto +P$1o +27052.2031 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26987 620 moveto +70 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26987 628 moveto +70 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +103 48 27097.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +102 47 27098.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +101 46 27098.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +100 45 27099.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +99 44 27099.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +98 43 27100.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +97 42 27100.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +96 41 27101.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +95 40 27101.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +103 48 27093.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +103 48 27093.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27108.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27108.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27111.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27123.9719 600.2656 moveto +P$29 +27135.4719 603.2031 moveto +P$1l +27135.4719 602.2969 moveto +P$1m +27142.0031 600.5938 moveto +P$1k +27145.925 602.4531 moveto +P$1b +27145.925 599.8906 moveto +P$1c +27152.2531 599.8906 moveto +P$2o +27152.925 602.4531 moveto +P$1b +27152.925 599.8906 moveto +P$1c +27160.6594 602.7031 moveto +P$1h +27165.9094 605.7188 moveto +P$1i +27168.0656 605.2656 moveto +P$1j +27172.0031 600.5938 moveto +P$1k +27175.925 602.4531 moveto +P$1b +27175.925 599.8906 moveto +P$1c +27181.4719 603.2031 moveto +P$1l +27181.4719 602.2969 moveto +P$1m +27192.3938 605.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27094.8 620 moveto +101 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27094.8 628 moveto +101 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +100 48 26855 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +99 47 26855.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +98 46 26856 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +97 45 26856.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +96 44 26857 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +95 43 26857.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +94 42 26858 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +93 41 26858.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +92 40 26859 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +100 48 26851 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +100 48 26851 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26866 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26866 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26868.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26884.7344 601.0625 moveto +P$20 +26886.3906 608.8594 moveto +P$2w +26890.0156 606.4219 moveto +P$1w +26892.7344 602.2969 moveto +P$1x +26903.75 605.4688 moveto +P$1r +26902.6719 605.1406 moveto +P$1s +26906.0156 606.4219 moveto +P$1w +26908.7344 602.2969 moveto +P$1x +26919.75 605.4688 moveto +P$1r +26918.6719 605.1406 moveto +P$1s +26922.1719 600.2656 moveto +P$2i +26926.2031 600.5938 moveto +P$1k +26935.75 605.4688 moveto +P$1r +26934.6719 605.1406 moveto +P$1s +26943.2344 603.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26852 620 moveto +98 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26852 628 moveto +98 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +81 48 9358.75 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +80 47 9359.25 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +79 46 9359.75 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +78 45 9360.25 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +77 44 9360.75 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +76 43 9361.25 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +75 42 9361.75 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +74 41 9362.25 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +73 40 9362.75 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +81 48 9354.75 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +81 48 9354.75 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9369.75 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9369.75 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9372.7188 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9391.4844 864.9375 moveto +P$14 +9398.3438 869.0469 moveto +P$2d +9403.8594 869.7188 moveto +P$1i +9406.0156 869.2656 moveto +P$1j +9412.6875 867.4531 moveto +P$1y +9418.0625 866.6406 moveto +P$1o +9426.5 869.4688 moveto +P$1r +9425.4219 869.1406 moveto +P$1s +9429.9531 864.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9355.75 884 moveto +79 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9355.75 892 moveto +79 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +136 48 9187 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +135 47 9187.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +134 46 9188 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +133 45 9188.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +132 44 9189 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +131 43 9189.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +130 42 9190 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +129 41 9190.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +128 40 9191 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +136 48 9183 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +136 48 9183 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +9198 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9198 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9200.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +9213.1719 864.2656 moveto +P$2m +9228.75 869.4688 moveto +P$1r +9227.6719 869.1406 moveto +P$1s +9235.3125 866.6406 moveto +P$1o +9242.3125 866.6406 moveto +P$1o +9248.1094 869.7188 moveto +P$1i +9250.2656 869.2656 moveto +P$1j +9257.4531 869.6563 moveto +P$2g +9258.5313 872.2031 moveto +P$2h +9266.75 869.4688 moveto +P$1r +9265.6719 869.1406 moveto +P$1s +9275.7344 864.9375 moveto +P$14 +9280.1094 869.7188 moveto +P$1i +9282.2656 869.2656 moveto +P$1j +9286.2031 864.5938 moveto +P$1k +9293.1094 869.7188 moveto +P$1i +9295.2656 869.2656 moveto +P$1j +9298.125 863.8906 moveto +P$1g +9303.6719 867.2031 moveto +P$1l +9303.6719 866.2969 moveto +P$1m +9313.4531 869.6563 moveto +P$2g +9314.5313 872.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9184 884 moveto +134 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9184 892 moveto +134 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +100 48 19926 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +99 47 19926.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +98 46 19927 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +97 45 19927.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +96 44 19928 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +95 43 19928.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +94 42 19929 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +93 41 19929.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +92 40 19930 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +100 48 19922 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +100 48 19922 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19937 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19937 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19939.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19953.3594 477.2344 moveto +P$27 +19952.1719 476.2656 moveto +P$28 +19965.75 481.4688 moveto +P$1r +19964.6719 481.1406 moveto +P$1s +19971.9375 479.4531 moveto +P$1y +19978.2344 479.7188 moveto +P$1a +19984.125 478.4531 moveto +P$1b +19984.125 475.8906 moveto +P$1c +19991.3125 478.6406 moveto +P$1o +19998.3125 478.6406 moveto +P$1o +20001.125 478.4531 moveto +P$1b +20001.125 475.8906 moveto +P$1c +20006.6719 479.2031 moveto +P$1l +20006.6719 478.2969 moveto +P$1m +20017.5938 481.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19923 496 moveto +98 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19923 504 moveto +98 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +84 48 19938.5 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +83 47 19939 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +82 46 19939.5 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +81 45 19940 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +80 44 19940.5 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +79 43 19941 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +78 42 19941.5 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +77 41 19942 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +76 40 19942.5 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +84 48 19934.5 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +84 48 19934.5 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19949.5 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19949.5 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19952.4688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19965.8594 601.2344 moveto +P$27 +19964.6719 600.2656 moveto +P$28 +19976.4375 603.4531 moveto +P$1y +19977.625 602.4531 moveto +P$1b +19977.625 599.8906 moveto +P$1c +19979.8594 602.4531 moveto +P$2f +19986.625 602.4531 moveto +P$1b +19986.625 599.8906 moveto +P$1c +19989.625 599.8906 moveto +P$1g +19998.25 605.4688 moveto +P$1r +19997.1719 605.1406 moveto +P$1s +20004.9531 605.6563 moveto +P$2g +20006.0313 608.2031 moveto +P$2h +20014.25 605.4688 moveto +P$1r +20013.1719 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19935.5 620 moveto +82 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19935.5 628 moveto +82 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +87 48 31716.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +86 47 31717.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +85 46 31717.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +84 45 31718.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +83 44 31718.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +82 43 31719.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +81 42 31719.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +80 41 31720.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +79 40 31720.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +87 48 31712.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +87 48 31712.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +31727.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31727.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31730.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31742.9719 104.2656 moveto +P$2l +31755.55 109.4688 moveto +P$1r +31754.4719 109.1406 moveto +P$1s +31760.6594 113.625 moveto +P$1q +31769.2219 104.5469 moveto +P$1z +31773.0031 104.5938 moveto +P$1k +31779.4719 107.2031 moveto +P$1l +31779.4719 106.2969 moveto +P$1m +31788.7375 107.4531 moveto +P$1y +31795.55 109.4688 moveto +P$1r +31794.4719 109.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31713.8 124 moveto +85 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31713.8 132 moveto +85 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +130 48 677 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +129 47 677.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +128 46 678 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +127 45 678.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +126 44 679 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +125 43 679.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +124 42 680 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +123 41 680.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +122 40 681 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +130 48 673 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +130 48 673 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +688 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +688 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +690.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +704.3594 477.2344 moveto +P$2p +703.1719 476.2656 moveto +P$2q +714.6719 479.2031 moveto +P$1l +714.6719 478.2969 moveto +P$1m +725.2344 479.7188 moveto +P$1a +734.1094 481.7188 moveto +P$1i +736.2656 481.2656 moveto +P$1j +739.125 478.4531 moveto +P$1b +739.125 475.8906 moveto +P$1c +747.5938 481.0469 moveto +P$1d +751.3594 477.2344 moveto +P$27 +750.1719 476.2656 moveto +P$28 +761.9375 479.4531 moveto +P$1y +765.6719 479.2031 moveto +P$1l +765.6719 478.2969 moveto +P$1m +770.3594 478.4531 moveto +P$2f +777.125 478.4531 moveto +P$1b +777.125 475.8906 moveto +P$1c +784.4531 479.4531 moveto +P$18 +780.7813 481.7344 moveto +P$19 +793.75 481.4688 moveto +P$1r +792.6719 481.1406 moveto +P$1s +799.9375 479.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +674 496 moveto +128 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +674 504 moveto +128 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +79 48 27256.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +78 47 27257.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +77 46 27257.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +76 45 27258.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +75 44 27258.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +74 43 27259.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +73 42 27259.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +72 41 27260.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +71 40 27260.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +79 48 27252.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +79 48 27252.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27267.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27267.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27270.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27284.1594 477.2344 moveto +P$2p +27282.9719 476.2656 moveto +P$2q +27294.4719 479.2031 moveto +P$1l +27294.4719 478.2969 moveto +P$1m +27305.0344 479.7188 moveto +P$1a +27313.9094 481.7188 moveto +P$1i +27316.0656 481.2656 moveto +P$1j +27318.925 478.4531 moveto +P$1b +27318.925 475.8906 moveto +P$1c +27327.3938 481.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27253.8 496 moveto +77 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27253.8 504 moveto +77 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +63 48 27257.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +62 47 27258.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +61 46 27258.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +60 45 27259.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +59 44 27259.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +58 43 27260.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +57 42 27260.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +56 41 27261.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +55 40 27261.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +63 48 27253.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +63 48 27253.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27268.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27268.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27271.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27282.7688 600.2656 moveto +P$1p +27296.55 605.4688 moveto +P$1r +27295.4719 605.1406 moveto +P$1s +27302.7375 603.4531 moveto +P$1y +27309.0344 603.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27254.8 620 moveto +61 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27254.8 628 moveto +61 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +70 48 27371 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +69 47 27371.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +68 46 27372 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +67 45 27372.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +66 44 27373 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +65 43 27373.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +64 42 27374 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +63 41 27374.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +62 40 27375 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +70 48 27367 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +70 48 27367 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27382 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27382 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27384.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27395.9688 476.2656 moveto +P$1p +27409.75 481.4688 moveto +P$1r +27408.6719 481.1406 moveto +P$1s +27415.9375 479.4531 moveto +P$1y +27422.2344 479.7188 moveto +P$1a +27432.3125 478.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27368 496 moveto +68 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27368 504 moveto +68 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +127 48 8249.75 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +126 47 8250.25 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +125 46 8250.75 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +124 45 8251.25 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +123 44 8251.75 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +122 43 8252.25 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +121 42 8252.75 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +120 41 8253.25 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +119 40 8253.75 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +127 48 8245.75 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +127 48 8245.75 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +8260.75 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8260.75 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8263.7188 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +8277.1094 601.2344 moveto +P$2p +8275.9219 600.2656 moveto +P$2q +8284.7656 606.4219 moveto +P$1w +8287.4844 602.2969 moveto +P$1x +8297.5938 605.7344 moveto +P$1f +8293.9219 603.4531 moveto +P$22 +8300.875 599.8906 moveto +P$1g +8303.875 602.4531 moveto +P$1b +8303.875 599.8906 moveto +P$1c +8312.3438 605.0469 moveto +P$1d +8321.4844 600.9375 moveto +P$14 +8325.4219 603.2031 moveto +P$1l +8325.4219 602.2969 moveto +P$1m +8334.6875 603.4531 moveto +P$1y +8341.5 605.4688 moveto +P$1r +8340.4219 605.1406 moveto +P$1s +8343.9219 600.2656 moveto +P$2i +8347.9531 600.5938 moveto +P$1k +8357.5 605.4688 moveto +P$1r +8356.4219 605.1406 moveto +P$1s +8364.9844 603.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8246.75 620 moveto +125 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8246.75 628 moveto +125 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +165 48 11082.8 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +164 47 11083.3 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +163 46 11083.8 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +162 45 11084.3 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +161 44 11084.8 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +160 43 11085.3 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +159 42 11085.8 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +158 41 11086.3 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +157 40 11086.8 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +165 48 11078.8 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +165 48 11078.8 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +11093.8 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11093.8 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11096.7688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11108.9719 724.2656 moveto +P$2s +11119.7375 727.4531 moveto +P$1y +11126.55 729.4688 moveto +P$1r +11125.4719 729.1406 moveto +P$1s +11134.55 729.4688 moveto +P$1r +11133.4719 729.1406 moveto +P$1s +11140.2531 723.8906 moveto +P$2o +11143.4719 727.2031 moveto +P$1l +11143.4719 726.2969 moveto +P$1m +11152.7375 727.4531 moveto +P$1y +11159.0344 727.7188 moveto +P$1a +11171.5344 724.9375 moveto +P$14 +11175.4719 727.2031 moveto +P$1l +11175.4719 726.2969 moveto +P$1m +11186.3938 729.0469 moveto +P$1d +11190.0031 724.5938 moveto +P$1k +11199.55 729.4688 moveto +P$1r +11198.4719 729.1406 moveto +P$1s +11207.3938 729.0469 moveto +P$1d +11211.0031 724.5938 moveto +P$1k +11214.9719 724.2656 moveto +P$2i +11219.0031 724.5938 moveto +P$1k +11228.55 729.4688 moveto +P$1r +11227.4719 729.1406 moveto +P$1s +11236.0344 727.7188 moveto +P$1a +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11079.8 744 moveto +163 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11079.8 752 moveto +163 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +200 48 11074 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +199 47 11074.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +198 46 11075 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +197 45 11075.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +196 44 11076 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +195 43 11076.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +194 42 11077 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +193 41 11077.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +192 40 11078 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +200 48 11070 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +200 48 11070 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +11085 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11085 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11087.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11100.1719 864.2656 moveto +P$2s +11110.9375 867.4531 moveto +P$1y +11117.75 869.4688 moveto +P$1r +11116.6719 869.1406 moveto +P$1s +11125.75 869.4688 moveto +P$1r +11124.6719 869.1406 moveto +P$1s +11131.4531 863.8906 moveto +P$2o +11134.6719 867.2031 moveto +P$1l +11134.6719 866.2969 moveto +P$1m +11143.9375 867.4531 moveto +P$1y +11150.2344 867.7188 moveto +P$1a +11162.7344 864.9375 moveto +P$14 +11166.6719 867.2031 moveto +P$1l +11166.6719 866.2969 moveto +P$1m +11177.5938 869.0469 moveto +P$1d +11181.2031 864.5938 moveto +P$1k +11190.75 869.4688 moveto +P$1r +11189.6719 869.1406 moveto +P$1s +11198.5938 869.0469 moveto +P$1d +11202.2031 864.5938 moveto +P$1k +11206.1719 864.2656 moveto +P$2i +11210.2031 864.5938 moveto +P$1k +11219.75 869.4688 moveto +P$1r +11218.6719 869.1406 moveto +P$1s +11227.2344 867.7188 moveto +P$1a +11236.1094 865.4375 moveto +P$16 +11235.4375 864.2656 moveto +P$17 +11245.3125 866.6406 moveto +P$1o +11252.3125 866.6406 moveto +P$1o +11260.75 869.4688 moveto +P$1r +11259.6719 869.1406 moveto +P$1s +11264.2031 864.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11071 884 moveto +198 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11071 892 moveto +198 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +161 48 4108.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +160 47 4109.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +159 46 4109.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +158 45 4110.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +157 44 4110.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +156 43 4111.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +155 42 4111.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +154 41 4112.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +153 40 4112.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +161 48 4104.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +161 48 4104.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +4119.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4119.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4122.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +4134.9219 724.2656 moveto +P$2s +4145.6875 727.4531 moveto +P$1y +4152.5 729.4688 moveto +P$1r +4151.4219 729.1406 moveto +P$1s +4160.5 729.4688 moveto +P$1r +4159.4219 729.1406 moveto +P$1s +4166.2031 723.8906 moveto +P$2o +4169.4219 727.2031 moveto +P$1l +4169.4219 726.2969 moveto +P$1m +4178.6875 727.4531 moveto +P$1y +4184.9844 727.7188 moveto +P$1a +4192.1094 728.8438 moveto +P$1t +4192.1094 725.2344 moveto +P$1u +4190.9219 724.2656 moveto +P$1v +4198.875 726.4531 moveto +P$1b +4198.875 723.8906 moveto +P$1c +4207.3438 729.0469 moveto +P$1d +4212.8594 729.7188 moveto +P$1i +4215.0156 729.2656 moveto +P$1j +4221.6875 727.4531 moveto +P$1y +4225.6094 733.625 moveto +P$1q +4231.8594 725.4375 moveto +P$16 +4231.1875 724.2656 moveto +P$17 +4241.0625 726.6406 moveto +P$1o +4248.0625 726.6406 moveto +P$1o +4256.5 729.4688 moveto +P$1r +4255.4219 729.1406 moveto +P$1s +4259.9531 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4105.75 744 moveto +159 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4105.75 752 moveto +159 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +149 48 3924.75 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +148 47 3925.25 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +147 46 3925.75 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +146 45 3926.25 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +145 44 3926.75 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +144 43 3927.25 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +143 42 3927.75 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +142 41 3928.25 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +141 40 3928.75 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +149 48 3920.75 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +149 48 3920.75 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +3935.75 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3935.75 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3938.7188 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +3950.9219 724.2656 moveto +P$2s +3961.6875 727.4531 moveto +P$1y +3968.5 729.4688 moveto +P$1r +3967.4219 729.1406 moveto +P$1s +3976.5 729.4688 moveto +P$1r +3975.4219 729.1406 moveto +P$1s +3982.2031 723.8906 moveto +P$2o +3985.4219 727.2031 moveto +P$1l +3985.4219 726.2969 moveto +P$1m +3994.6875 727.4531 moveto +P$1y +4000.9844 727.7188 moveto +P$1a +4005.7188 724.2656 moveto +P$1p +4019.5 729.4688 moveto +P$1r +4018.4219 729.1406 moveto +P$1s +4027.3438 726.4531 moveto +P$2c +4028.9531 724.5938 moveto +P$1k +4035.8594 725.4375 moveto +P$16 +4035.1875 724.2656 moveto +P$17 +4045.0625 726.6406 moveto +P$1o +4052.0625 726.6406 moveto +P$1o +4060.5 729.4688 moveto +P$1r +4059.4219 729.1406 moveto +P$1s +4063.9531 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3921.75 744 moveto +147 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3921.75 752 moveto +147 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +153 48 31958.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +152 47 31959.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +151 46 31959.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +150 45 31960.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +149 44 31960.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +148 43 31961.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +147 42 31961.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +146 41 31962.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +145 40 31962.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +153 48 31954.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +153 48 31954.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +31969.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31969.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31972.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +31989.1281 108.9063 moveto +P$2a +31986.1594 105.2344 moveto +P$2b +31998.55 109.4688 moveto +P$1r +31997.4719 109.1406 moveto +P$1s +32006.0344 107.7188 moveto +P$1a +32014.4719 107.2031 moveto +P$1l +32014.4719 106.2969 moveto +P$1m +32021.0031 104.5938 moveto +P$1k +32030.55 109.4688 moveto +P$1r +32029.4719 109.1406 moveto +P$1s +32036.5344 105.0625 moveto +P$20 +32036.5344 104.1094 moveto +P$21 +32041.925 106.4531 moveto +P$1b +32041.925 103.8906 moveto +P$1c +32049.2531 107.4531 moveto +P$18 +32045.5813 109.7344 moveto +P$19 +32052.9719 104.2656 moveto +P$2m +32065.9094 109.7188 moveto +P$1i +32068.0656 109.2656 moveto +P$1j +32071.9719 112.0313 moveto +P$1e +32075.6438 109.7344 moveto +P$1f +32079.9719 112.0313 moveto +P$1e +32083.6438 109.7344 moveto +P$1f +32086.925 106.4531 moveto +P$1b +32086.925 103.8906 moveto +P$1c +32095.3938 109.0469 moveto +P$1d +32102.2531 109.6563 moveto +P$2g +32103.3313 112.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31955.8 124 moveto +151 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31955.8 132 moveto +151 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +76 48 18611 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +75 47 18611.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +74 46 18612 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +73 45 18612.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +72 44 18613 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +71 43 18613.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +70 42 18614 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +69 41 18614.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +68 40 18615 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +76 48 18607 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +76 48 18607 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18622 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18622 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18624.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18642.4219 352.5469 moveto +P$1z +18650.75 357.4688 moveto +P$1r +18649.6719 357.1406 moveto +P$1s +18656.1094 357.7188 moveto +P$1i +18658.2656 357.2656 moveto +P$1j +18664.9375 355.4531 moveto +P$1y +18670.8594 354.7031 moveto +P$1h +18678.5938 357.0469 moveto +P$2d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18608 372 moveto +74 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18608 380 moveto +74 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +72 48 18504 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +71 47 18504.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +70 46 18505 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +69 45 18505.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +68 44 18506 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +67 43 18506.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +66 42 18507 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +65 41 18507.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +64 40 18508 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +72 48 18500 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +72 48 18500 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18515 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18515 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18517.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18535.4219 352.5469 moveto +P$1z +18543.75 357.4688 moveto +P$1r +18542.6719 357.1406 moveto +P$1s +18549.9375 355.4531 moveto +P$1y +18550.3594 354.4531 moveto +P$2f +18562.75 357.4688 moveto +P$1r +18561.6719 357.1406 moveto +P$1s +18568.9375 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18501 372 moveto +70 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18501 380 moveto +70 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +124 48 18345.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +123 47 18346 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +122 46 18346.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +121 45 18347 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +120 44 18347.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +119 43 18348 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +118 42 18348.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +117 41 18349 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +116 40 18349.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +124 48 18341.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +124 48 18341.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18356.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18356.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18359.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18376.9219 352.5469 moveto +P$1z +18380.6719 360.0313 moveto +P$1e +18384.3438 357.7344 moveto +P$1f +18390.1719 355.2031 moveto +P$1l +18390.1719 354.2969 moveto +P$1m +18401.0938 357.0469 moveto +P$1d +18407.8125 354.6406 moveto +P$1o +18413.1719 355.2031 moveto +P$1l +18413.1719 354.2969 moveto +P$1m +18422.4375 355.4531 moveto +P$1y +18429.25 357.4688 moveto +P$1r +18428.1719 357.1406 moveto +P$1s +18435.9531 355.4531 moveto +P$18 +18432.2813 357.7344 moveto +P$19 +18439.6719 352.2656 moveto +P$2j +18445.625 354.4531 moveto +P$1b +18445.625 351.8906 moveto +P$1c +18454.0938 357.0469 moveto +P$1d +18456.5938 351.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18342.5 372 moveto +122 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18342.5 380 moveto +122 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +138 48 17248 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +137 47 17248.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +136 46 17249 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +135 45 17249.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +134 44 17250 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +133 43 17250.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +132 42 17251 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +131 41 17251.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +130 40 17252 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +138 48 17244 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +138 48 17244 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +17259 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17259 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17261.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17279.4219 352.5469 moveto +P$1z +17283.1719 360.0313 moveto +P$1e +17286.8438 357.7344 moveto +P$1f +17290.125 354.4531 moveto +P$1b +17290.125 351.8906 moveto +P$1c +17297.4531 355.4531 moveto +P$18 +17293.7813 357.7344 moveto +P$19 +17306.75 357.4688 moveto +P$1r +17305.6719 357.1406 moveto +P$1s +17312.9375 355.4531 moveto +P$1y +17319.75 357.4688 moveto +P$1r +17318.6719 357.1406 moveto +P$1s +17326.4531 355.4531 moveto +P$18 +17322.7813 357.7344 moveto +P$19 +17336.7344 352.9375 moveto +P$14 +17340.6719 355.2031 moveto +P$1l +17340.6719 354.2969 moveto +P$1m +17351.5938 357.0469 moveto +P$1d +17355.2031 352.5938 moveto +P$1k +17364.75 357.4688 moveto +P$1r +17363.6719 357.1406 moveto +P$1s +17372.5938 357.0469 moveto +P$1d +17376.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17245 372 moveto +136 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17245 380 moveto +136 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +78 48 17662 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +77 47 17662.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +76 46 17663 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +75 45 17663.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +74 44 17664 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +73 43 17664.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +72 42 17665 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +71 41 17665.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +70 40 17666 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +78 48 17658 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +78 48 17658 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +17673 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17673 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17675.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17688.1719 352.2656 moveto +P$2i +17696.5938 357.0469 moveto +P$1d +17703.4531 355.4531 moveto +P$18 +17699.7813 357.7344 moveto +P$19 +17712.75 357.4688 moveto +P$1r +17711.6719 357.1406 moveto +P$1s +17720.5938 354.4531 moveto +P$2c +17726.75 357.4688 moveto +P$1r +17725.6719 357.1406 moveto +P$1s +17732.9375 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17659 372 moveto +76 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17659 380 moveto +76 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +81 48 11704.8 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +80 47 11705.3 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +79 46 11705.8 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +78 45 11706.3 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +77 44 11706.8 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +76 43 11707.3 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +75 42 11707.8 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +74 41 11708.3 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +73 40 11708.8 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +81 48 11700.8 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +81 48 11700.8 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +11715.8 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11715.8 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11718.7688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11737.5344 724.9375 moveto +P$14 +11741.4719 727.2031 moveto +P$1l +11741.4719 726.2969 moveto +P$1m +11752.3938 729.0469 moveto +P$1d +11756.0031 724.5938 moveto +P$1k +11762.9094 729.7188 moveto +P$1i +11765.0656 729.2656 moveto +P$1j +11772.6594 726.7031 moveto +P$1h +11776.0031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11701.8 744 moveto +79 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11701.8 752 moveto +79 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +132 48 11755 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +131 47 11755.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +130 46 11756 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +129 45 11756.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +128 44 11757 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +127 43 11757.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +126 42 11758 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +125 41 11758.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +124 40 11759 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +132 48 11751 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +132 48 11751 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +11766 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11766 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11768.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11787.7344 864.9375 moveto +P$14 +11791.6719 867.2031 moveto +P$1l +11791.6719 866.2969 moveto +P$1m +11802.5938 869.0469 moveto +P$1d +11806.2031 864.5938 moveto +P$1k +11813.1094 869.7188 moveto +P$1i +11815.2656 869.2656 moveto +P$1j +11822.8594 866.7031 moveto +P$1h +11826.2031 864.5938 moveto +P$1k +11833.1094 865.4375 moveto +P$16 +11832.4375 864.2656 moveto +P$17 +11842.4531 867.4531 moveto +P$18 +11838.7813 869.7344 moveto +P$19 +11850.4531 867.4531 moveto +P$18 +11846.7813 869.7344 moveto +P$19 +11857.9375 867.4531 moveto +P$1y +11864.75 869.4688 moveto +P$1r +11863.6719 869.1406 moveto +P$1s +11871.3125 866.6406 moveto +P$1o +11878.3125 866.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11752 884 moveto +130 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11752 892 moveto +130 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +121 48 11922.8 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +120 47 11923.3 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +119 46 11923.8 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +118 45 11924.3 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +117 44 11924.8 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +116 43 11925.3 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +115 42 11925.8 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +114 41 11926.3 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +113 40 11926.8 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +121 48 11918.8 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +121 48 11918.8 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +11933.8 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11933.8 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11936.7688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11955.5344 864.9375 moveto +P$14 +11959.4719 867.2031 moveto +P$1l +11959.4719 866.2969 moveto +P$1m +11970.3938 869.0469 moveto +P$1d +11974.0031 864.5938 moveto +P$1k +11980.9094 869.7188 moveto +P$1i +11983.0656 869.2656 moveto +P$1j +11990.6594 866.7031 moveto +P$1h +11994.0031 864.5938 moveto +P$1k +11999.1594 865.2344 moveto +P$27 +11997.9719 864.2656 moveto +P$28 +12011.3938 869.0469 moveto +P$2d +12016.4719 867.2031 moveto +P$1l +12016.4719 866.2969 moveto +P$1m +12027.3938 869.0469 moveto +P$1d +12035.55 869.4688 moveto +P$1r +12034.4719 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11919.8 884 moveto +119 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11919.8 892 moveto +119 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +110 48 12079 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +109 47 12079.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +108 46 12080 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +107 45 12080.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +106 44 12081 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +105 43 12081.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +104 42 12082 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +103 41 12082.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +102 40 12083 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +110 48 12075 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +110 48 12075 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +12090 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12090 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12092.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +12111.7344 864.9375 moveto +P$14 +12115.6719 867.2031 moveto +P$1l +12115.6719 866.2969 moveto +P$1m +12126.5938 869.0469 moveto +P$1d +12130.2031 864.5938 moveto +P$1k +12137.1094 869.7188 moveto +P$1i +12139.2656 869.2656 moveto +P$1j +12146.8594 866.7031 moveto +P$1h +12150.2031 864.5938 moveto +P$1k +12152.9688 864.2656 moveto +P$1p +12163.8594 873.625 moveto +P$1q +12168.1719 872.0313 moveto +P$1e +12171.8438 869.7344 moveto +P$1f +12180.75 869.4688 moveto +P$1r +12179.6719 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12076 884 moveto +108 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12076 892 moveto +108 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +102 48 11618.5 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +101 47 11619 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +100 46 11619.5 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +99 45 11620 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +98 44 11620.5 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +97 43 11621 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +96 42 11621.5 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +95 41 11622 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +94 40 11622.5 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +102 48 11614.5 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +102 48 11614.5 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +11629.5 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11629.5 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11632.4688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +11644.6719 864.2656 moveto +P$26 +11657.9219 864.5469 moveto +P$1z +11661.8594 865.2344 moveto +P$2p +11660.6719 864.2656 moveto +P$2q +11674.9219 864.5469 moveto +P$1z +11683.25 869.4688 moveto +P$1r +11682.1719 869.1406 moveto +P$1s +11689.4375 867.4531 moveto +P$1y +11689.8594 866.4531 moveto +P$2f +11696.625 866.4531 moveto +P$1b +11696.625 863.8906 moveto +P$1c +11704.3594 866.7031 moveto +P$1h +11712.25 869.4688 moveto +P$1r +11711.1719 869.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11615.5 884 moveto +100 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11615.5 892 moveto +100 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +157 48 29660.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +156 47 29661.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +155 46 29661.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +154 45 29662.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +153 44 29662.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +152 43 29663.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +151 42 29663.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +150 41 29664.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +149 40 29664.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +157 48 29656.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +157 48 29656.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +29671.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29671.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29674.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29688.1594 477.2344 moveto +P$27 +29686.9719 476.2656 moveto +P$28 +29700.55 481.4688 moveto +P$1r +29699.4719 481.1406 moveto +P$1s +29706.7375 479.4531 moveto +P$1y +29712.1125 478.6406 moveto +P$1o +29714.925 478.4531 moveto +P$1b +29714.925 475.8906 moveto +P$1c +29722.1125 478.6406 moveto +P$1o +29726.0031 476.5938 moveto +P$1k +29735.55 481.4688 moveto +P$1r +29734.4719 481.1406 moveto +P$1s +29743.3938 481.0469 moveto +P$1d +29747.0031 476.5938 moveto +P$1k +29750.8469 476.2656 moveto +P$24 +29764.1125 478.6406 moveto +P$1o +29772.55 481.4688 moveto +P$1r +29771.4719 481.1406 moveto +P$1s +29778.7375 479.4531 moveto +P$1y +29781.1594 477.2344 moveto +P$27 +29779.9719 476.2656 moveto +P$28 +29791.7375 479.4531 moveto +P$1y +29798.55 481.4688 moveto +P$1r +29797.4719 481.1406 moveto +P$1s +29804.2531 475.8906 moveto +P$2o +29809.1125 478.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29657.8 496 moveto +155 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29657.8 504 moveto +155 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +57 48 29710.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +56 47 29711.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +55 46 29711.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +54 45 29712.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +53 44 29712.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +52 43 29713.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +51 42 29713.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +50 41 29714.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +49 40 29714.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +57 48 29706.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +57 48 29706.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +29721.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29721.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29724.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29738.1594 601.2344 moveto +P$27 +29736.9719 600.2656 moveto +P$28 +29748.7375 603.4531 moveto +P$1y +29755.55 605.4688 moveto +P$1r +29754.4719 605.1406 moveto +P$1s +29761.2531 599.8906 moveto +P$2o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29707.8 620 moveto +55 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29707.8 628 moveto +55 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +98 48 19772.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +97 47 19773 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +96 46 19773.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +95 45 19774 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +94 44 19774.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +93 43 19775 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +92 42 19775.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +91 41 19776 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +90 40 19776.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +98 48 19768.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +98 48 19768.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19783.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19783.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19786.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19798.6719 352.2656 moveto +P$29 +19810.6094 357.7188 moveto +P$1i +19812.7656 357.2656 moveto +P$1j +19814.8594 354.4531 moveto +P$2f +19821.625 354.4531 moveto +P$1b +19821.625 351.8906 moveto +P$1c +19828.9531 357.6563 moveto +P$2g +19830.0313 360.2031 moveto +P$2h +19835.6094 357.7188 moveto +P$1i +19837.7656 357.2656 moveto +P$1j +19841.7031 352.5938 moveto +P$1k +19845.625 354.4531 moveto +P$1b +19845.625 351.8906 moveto +P$1c +19851.1719 355.2031 moveto +P$1l +19851.1719 354.2969 moveto +P$1m +19862.0938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19769.5 372 moveto +96 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19769.5 380 moveto +96 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +90 48 19647 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +89 47 19647.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +88 46 19648 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +87 45 19648.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +86 44 19649 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +85 43 19649.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +84 42 19650 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +83 41 19650.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +82 40 19651 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +90 48 19643 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +90 48 19643 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19658 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19658 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19660.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19676.7344 353.0625 moveto +P$20 +19678.3906 360.8594 moveto +P$2w +19682.0156 358.4219 moveto +P$1w +19684.7344 354.2969 moveto +P$1x +19690.125 354.4531 moveto +P$1b +19690.125 351.8906 moveto +P$1c +19697.8594 354.7031 moveto +P$1h +19700.0938 351.8906 moveto +P$2n +19707.1719 352.2656 moveto +P$2j +19713.125 354.4531 moveto +P$1b +19713.125 351.8906 moveto +P$1c +19721.5938 357.0469 moveto +P$1d +19724.0938 351.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19644 372 moveto +88 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19644 380 moveto +88 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +90 48 19522 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +89 47 19522.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +88 46 19523 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +87 45 19523.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +86 44 19524 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +85 43 19524.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +84 42 19525 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +83 41 19525.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +82 40 19526 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +90 48 19518 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +90 48 19518 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19533 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19533 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19535.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19546.9688 352.2656 moveto +P$1p +19560.75 357.4688 moveto +P$1r +19559.6719 357.1406 moveto +P$1s +19568.2344 355.7188 moveto +P$1a +19575.1719 360.0313 moveto +P$1e +19578.8438 357.7344 moveto +P$1f +19582.125 351.8906 moveto +P$1g +19588.1094 357.7188 moveto +P$1i +19590.2656 357.2656 moveto +P$1j +19594.2031 352.5938 moveto +P$1k +19603.75 357.4688 moveto +P$1r +19602.6719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19519 372 moveto +88 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19519 380 moveto +88 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +143 48 19522.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +142 47 19523.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +141 46 19523.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +140 45 19524.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +139 44 19524.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +138 43 19525.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +137 42 19525.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +136 41 19526.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +135 40 19526.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +143 48 19518.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +143 48 19518.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +19533.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19533.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19536.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +19547.7688 476.2656 moveto +P$1p +19561.55 481.4688 moveto +P$1r +19560.4719 481.1406 moveto +P$1s +19569.0344 479.7188 moveto +P$1a +19575.9719 484.0313 moveto +P$1e +19579.6438 481.7344 moveto +P$1f +19582.925 475.8906 moveto +P$1g +19588.9094 481.7188 moveto +P$1i +19591.0656 481.2656 moveto +P$1j +19595.0031 476.5938 moveto +P$1k +19604.55 481.4688 moveto +P$1r +19603.4719 481.1406 moveto +P$1s +19606.9719 476.2656 moveto +P$2m +19619.9094 481.7188 moveto +P$1i +19622.0656 481.2656 moveto +P$1j +19625.9719 484.0313 moveto +P$1e +19629.6438 481.7344 moveto +P$1f +19633.9719 484.0313 moveto +P$1e +19637.6438 481.7344 moveto +P$1f +19640.925 478.4531 moveto +P$1b +19640.925 475.8906 moveto +P$1c +19649.3938 481.0469 moveto +P$1d +19656.2531 481.6563 moveto +P$2g +19657.3313 484.2031 moveto +P$2h +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19519.8 496 moveto +141 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19519.8 504 moveto +141 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +122 48 28138 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +121 47 28138.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +120 46 28139 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +119 45 28139.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +118 44 28140 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +117 43 28140.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +116 42 28141 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +115 41 28141.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +114 40 28142 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +122 48 28134 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +122 48 28134 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28149 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28149 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28151.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28164.1719 476.2656 moveto +P$2i +28168.2031 476.5938 moveto +P$1k +28177.75 481.4688 moveto +P$1r +28176.6719 481.1406 moveto +P$1s +28185.2344 479.7188 moveto +P$1a +28191.1719 476.2656 moveto +P$2j +28197.125 478.4531 moveto +P$1b +28197.125 475.8906 moveto +P$1c +28204.3125 478.6406 moveto +P$1o +28208.2031 476.5938 moveto +P$1k +28213.3594 477.2344 moveto +P$27 +28212.1719 476.2656 moveto +P$28 +28222.6719 479.2031 moveto +P$1l +28222.6719 478.2969 moveto +P$1m +28231.9375 479.4531 moveto +P$1y +28234.2031 476.5938 moveto +P$1k +28238.125 475.8906 moveto +P$1g +28246.75 481.4688 moveto +P$1r +28245.6719 481.1406 moveto +P$1s +28250.2031 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28135 496 moveto +120 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28135 504 moveto +120 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +168 48 28309.5 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +167 47 28310 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +166 46 28310.5 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +165 45 28311 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +164 44 28311.5 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +163 43 28312 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +162 42 28312.5 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +161 41 28313 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +160 40 28313.5 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +168 48 28305.5 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +168 48 28305.5 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28320.5 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28320.5 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28323.4688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28335.6719 352.2656 moveto +P$29 +28347.6094 357.7188 moveto +P$1i +28349.7656 357.2656 moveto +P$1j +28351.8594 354.4531 moveto +P$2f +28358.625 354.4531 moveto +P$1b +28358.625 351.8906 moveto +P$1c +28365.9531 357.6563 moveto +P$2g +28367.0313 360.2031 moveto +P$2h +28372.6094 357.7188 moveto +P$1i +28374.7656 357.2656 moveto +P$1j +28378.7031 352.5938 moveto +P$1k +28382.625 354.4531 moveto +P$1b +28382.625 351.8906 moveto +P$1c +28388.1719 355.2031 moveto +P$1l +28388.1719 354.2969 moveto +P$1m +28399.0938 357.0469 moveto +P$1d +28400.4688 352.2656 moveto +P$1p +28412.4375 355.4531 moveto +P$1y +28419.25 357.4688 moveto +P$1r +28418.1719 357.1406 moveto +P$1s +28427.25 357.4688 moveto +P$1r +28426.1719 357.1406 moveto +P$1s +28430.8594 353.2344 moveto +P$27 +28429.6719 352.2656 moveto +P$28 +28440.1719 355.2031 moveto +P$1l +28440.1719 354.2969 moveto +P$1m +28449.4375 355.4531 moveto +P$1y +28451.7031 352.5938 moveto +P$1k +28455.625 351.8906 moveto +P$1g +28464.25 357.4688 moveto +P$1r +28463.1719 357.1406 moveto +P$1s +28467.7031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28306.5 372 moveto +166 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28306.5 380 moveto +166 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +135 48 28138.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +134 47 28139.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +133 46 28139.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +132 45 28140.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +131 44 28140.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +130 43 28141.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +129 42 28141.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +128 41 28142.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +127 40 28142.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +135 48 28134.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +135 48 28134.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28149.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28149.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28152.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28168.5344 353.0625 moveto +P$20 +28168.5344 352.1094 moveto +P$21 +28178.6438 357.7344 moveto +P$1f +28174.9719 355.4531 moveto +P$22 +28181.925 354.4531 moveto +P$23 +28181.925 351.8906 moveto +P$1c +28190.55 357.4688 moveto +P$1r +28189.4719 357.1406 moveto +P$1s +28197.6594 354.7031 moveto +P$1h +28201.0031 352.5938 moveto +P$1k +28204.9719 352.2656 moveto +P$2j +28210.925 354.4531 moveto +P$1b +28210.925 351.8906 moveto +P$1c +28218.1125 354.6406 moveto +P$1o +28222.0031 352.5938 moveto +P$1k +28227.1594 353.2344 moveto +P$27 +28225.9719 352.2656 moveto +P$28 +28236.4719 355.2031 moveto +P$1l +28236.4719 354.2969 moveto +P$1m +28245.7375 355.4531 moveto +P$1y +28248.0031 352.5938 moveto +P$1k +28251.925 351.8906 moveto +P$1g +28260.55 357.4688 moveto +P$1r +28259.4719 357.1406 moveto +P$1s +28264.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28135.8 372 moveto +133 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28135.8 380 moveto +133 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +156 48 18083 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +155 47 18083.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +154 46 18084 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +153 45 18084.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +152 44 18085 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +151 43 18085.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +150 42 18086 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +149 41 18086.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +148 40 18087 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +156 48 18079 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +156 48 18079 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +18094 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18094 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18096.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +18110.3594 353.2344 moveto +P$2p +18109.1719 352.2656 moveto +P$2q +18120.8594 361.625 moveto +P$1q +18129.5938 357.0469 moveto +P$1d +18135.1094 357.7188 moveto +P$1i +18137.2656 357.2656 moveto +P$1j +18145.2344 355.7188 moveto +P$1a +18151.125 354.4531 moveto +P$1b +18151.125 351.8906 moveto +P$1c +18158.8594 354.7031 moveto +P$1h +18164.1094 353.4375 moveto +P$16 +18163.4375 352.2656 moveto +P$17 +18173.3125 354.6406 moveto +P$1o +18180.3125 354.6406 moveto +P$1o +18185.6719 355.2031 moveto +P$1l +18185.6719 354.2969 moveto +P$1m +18195.8594 354.7031 moveto +P$1h +18198.125 354.4531 moveto +P$1b +18198.125 351.8906 moveto +P$1c +18204.1094 357.7188 moveto +P$1i +18206.2656 357.2656 moveto +P$1j +18210.2031 352.5938 moveto +P$1k +18214.125 354.4531 moveto +P$1b +18214.125 351.8906 moveto +P$1c +18219.6719 355.2031 moveto +P$1l +18219.6719 354.2969 moveto +P$1m +18230.5938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18080 372 moveto +154 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18080 380 moveto +154 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +153 48 17894.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +152 47 17895.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +151 46 17895.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +150 45 17896.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +149 44 17896.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +148 43 17897.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +147 42 17897.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +146 41 17898.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +145 40 17898.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +153 48 17890.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +153 48 17890.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +17905.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17905.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17908.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +17922.1594 353.2344 moveto +P$2p +17920.9719 352.2656 moveto +P$2q +17932.6594 361.625 moveto +P$1q +17941.3938 357.0469 moveto +P$1d +17946.9094 357.7188 moveto +P$1i +17949.0656 357.2656 moveto +P$1j +17957.0344 355.7188 moveto +P$1a +17962.925 354.4531 moveto +P$1b +17962.925 351.8906 moveto +P$1c +17970.6594 354.7031 moveto +P$1h +17976.5344 353.0625 moveto +P$20 +17976.5344 352.1094 moveto +P$21 +17986.6438 357.7344 moveto +P$1f +17982.9719 355.4531 moveto +P$22 +17989.925 354.4531 moveto +P$23 +17989.925 351.8906 moveto +P$1c +17998.55 357.4688 moveto +P$1r +17997.4719 357.1406 moveto +P$1s +18005.6594 354.7031 moveto +P$1h +18009.0031 352.5938 moveto +P$1k +18011.7688 352.2656 moveto +P$1p +18022.6594 361.625 moveto +P$1q +18026.9719 360.0313 moveto +P$1e +18030.6438 357.7344 moveto +P$1f +18039.55 357.4688 moveto +P$1r +18038.4719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17891.8 372 moveto +151 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17891.8 380 moveto +151 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +143 48 26250.8 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +142 47 26251.3 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +141 46 26251.8 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +140 45 26252.3 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +139 44 26252.8 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +138 43 26253.3 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +137 42 26253.8 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +136 41 26254.3 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +135 40 26254.8 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +143 48 26246.8 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +143 48 26246.8 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26261.8 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26261.8 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26264.7688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26278.1594 728.8438 moveto +P$1t +26278.1594 725.2344 moveto +P$1u +26276.9719 724.2656 moveto +P$1v +26287.4719 727.2031 moveto +P$1l +26287.4719 726.2969 moveto +P$1m +26295.4719 727.2031 moveto +P$1l +26295.4719 726.2969 moveto +P$1m +26300.8938 723.8906 moveto +P$2n +26313.0344 727.7188 moveto +P$1a +26321.9094 729.7188 moveto +P$1i +26324.0656 729.2656 moveto +P$1j +26330.7375 727.4531 moveto +P$1y +26331.8938 723.8906 moveto +P$2n +26343.1125 726.6406 moveto +P$1o +26347.1594 725.2344 moveto +P$27 +26345.9719 724.2656 moveto +P$28 +26356.4719 727.2031 moveto +P$1l +26356.4719 726.2969 moveto +P$1m +26365.7375 727.4531 moveto +P$1y +26368.0031 724.5938 moveto +P$1k +26371.925 723.8906 moveto +P$1g +26380.55 729.4688 moveto +P$1r +26379.4719 729.1406 moveto +P$1s +26384.0031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26247.8 744 moveto +141 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26247.8 752 moveto +141 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +94 48 26262 856 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +93 47 26262.5 856.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +92 46 26263 857 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +91 45 26263.5 857.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +90 44 26264 858 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +89 43 26264.5 858.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +88 42 26265 859 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +87 41 26265.5 859.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +86 40 26266 860 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +94 48 26258 852 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +94 48 26258 852 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26273 868 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26273 868 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26275.9688 873.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26289.3594 868.8438 moveto +P$1t +26289.3594 865.2344 moveto +P$1u +26288.1719 864.2656 moveto +P$1v +26298.6719 867.2031 moveto +P$1l +26298.6719 866.2969 moveto +P$1m +26306.6719 867.2031 moveto +P$1l +26306.6719 866.2969 moveto +P$1m +26312.0938 863.8906 moveto +P$2n +26324.2344 867.7188 moveto +P$1a +26333.1094 869.7188 moveto +P$1i +26335.2656 869.2656 moveto +P$1j +26341.9375 867.4531 moveto +P$1y +26343.0938 863.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26259 884 moveto +92 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26259 892 moveto +92 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +107 48 26428.8 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +106 47 26429.3 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +105 46 26429.8 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +104 45 26430.3 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +103 44 26430.8 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +102 43 26431.3 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +101 42 26431.8 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +100 41 26432.3 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +99 40 26432.8 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +107 48 26424.8 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +107 48 26424.8 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26439.8 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26439.8 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26442.7688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26454.9719 724.2656 moveto +P$29 +26469.55 729.4688 moveto +P$1r +26468.4719 729.1406 moveto +P$1s +26471.3 726.4531 moveto +P$2r +26485.1125 726.6406 moveto +P$1o +26489.1594 725.2344 moveto +P$27 +26487.9719 724.2656 moveto +P$28 +26498.4719 727.2031 moveto +P$1l +26498.4719 726.2969 moveto +P$1m +26507.7375 727.4531 moveto +P$1y +26510.0031 724.5938 moveto +P$1k +26513.925 723.8906 moveto +P$1g +26522.55 729.4688 moveto +P$1r +26521.4719 729.1406 moveto +P$1s +26526.0031 724.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26425.8 744 moveto +105 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26425.8 752 moveto +105 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +105 48 25537.8 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +104 47 25538.3 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +103 46 25538.8 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +102 45 25539.3 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +101 44 25539.8 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +100 43 25540.3 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +99 42 25540.8 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +98 41 25541.3 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +97 40 25541.8 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +105 48 25533.8 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +105 48 25533.8 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25548.8 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25548.8 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25551.7688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25565.1594 601.2344 moveto +P$27 +25563.9719 600.2656 moveto +P$28 +25574.9094 605.7188 moveto +P$1i +25577.0656 605.2656 moveto +P$1j +25584.2531 605.6563 moveto +P$2g +25585.3313 608.2031 moveto +P$2h +25593.55 605.4688 moveto +P$1r +25592.4719 605.1406 moveto +P$1s +25595.9719 600.2656 moveto +P$2j +25604.9094 605.7188 moveto +P$1i +25607.0656 605.2656 moveto +P$1j +25612.6594 609.625 moveto +P$1q +25618.4719 603.2031 moveto +P$1l +25618.4719 602.2969 moveto +P$1m +25623.8156 606.4219 moveto +P$1w +25626.5344 602.2969 moveto +P$1x +25633.0031 600.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25534.8 620 moveto +103 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25534.8 628 moveto +103 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +101 48 25572.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +100 47 25573.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +99 46 25573.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +98 45 25574.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +97 44 25574.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +96 43 25575.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +95 42 25575.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +94 41 25576.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +93 40 25576.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +101 48 25568.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +101 48 25568.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25583.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25583.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25586.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25598.2063 352.2656 moveto +P$15 +25612.4719 355.2031 moveto +P$1l +25612.4719 354.2969 moveto +P$1m +25621.7375 355.4531 moveto +P$1y +25622.8938 351.8906 moveto +P$2n +25634.1125 354.6406 moveto +P$1o +25637.9719 360.0313 moveto +P$1e +25641.6438 357.7344 moveto +P$1f +25647.9094 357.7188 moveto +P$1i +25650.0656 357.2656 moveto +P$1j +25657.6594 354.7031 moveto +P$1h +25665.55 357.4688 moveto +P$1r +25664.4719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25569.8 372 moveto +99 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25569.8 380 moveto +99 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +133 48 25549.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +132 47 25550.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +131 46 25550.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +130 45 25551.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +129 44 25551.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +128 43 25552.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +127 42 25552.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +126 41 25553.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +125 40 25553.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +133 48 25545.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +133 48 25545.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +25560.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25560.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25563.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +25575.2063 476.2656 moveto +P$15 +25589.4719 479.2031 moveto +P$1l +25589.4719 478.2969 moveto +P$1m +25598.7375 479.4531 moveto +P$1y +25599.8938 475.8906 moveto +P$2n +25611.1125 478.6406 moveto +P$1o +25614.9719 484.0313 moveto +P$1e +25618.6438 481.7344 moveto +P$1f +25624.9094 481.7188 moveto +P$1i +25627.0656 481.2656 moveto +P$1j +25634.6594 478.7031 moveto +P$1h +25642.55 481.4688 moveto +P$1r +25641.4719 481.1406 moveto +P$1s +25646.1594 477.2344 moveto +P$27 +25644.9719 476.2656 moveto +P$28 +25655.9094 481.7188 moveto +P$1i +25658.0656 481.2656 moveto +P$1j +25665.2531 481.6563 moveto +P$2g +25666.3313 484.2031 moveto +P$2h +25674.55 481.4688 moveto +P$1r +25673.4719 481.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25546.8 496 moveto +131 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25546.8 504 moveto +131 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +199 48 30436.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +198 47 30437.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +197 46 30437.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +196 45 30438.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +195 44 30438.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +194 43 30439.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +193 42 30439.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +192 41 30440.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +191 40 30440.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +199 48 30432.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +199 48 30432.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +30447.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30447.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30450.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30465.9094 353.4375 moveto +P$16 +30465.2375 352.2656 moveto +P$17 +30471.9719 360.0313 moveto +P$1e +30475.6438 357.7344 moveto +P$1f +30479.9719 360.0313 moveto +P$1e +30483.6438 357.7344 moveto +P$1f +30486.925 351.8906 moveto +P$1g +30489.925 354.4531 moveto +P$1b +30489.925 351.8906 moveto +P$1c +30497.6594 354.7031 moveto +P$1h +30502.9094 357.7188 moveto +P$1i +30505.0656 357.2656 moveto +P$1j +30509.0031 352.5938 moveto +P$1k +30512.925 354.4531 moveto +P$1b +30512.925 351.8906 moveto +P$1c +30518.4719 355.2031 moveto +P$1l +30518.4719 354.2969 moveto +P$1m +30529.3938 357.0469 moveto +P$1d +30533.1594 353.2344 moveto +P$2p +30531.9719 352.2656 moveto +P$2q +30540.925 354.4531 moveto +P$1b +30540.925 351.8906 moveto +P$1c +30547.7375 355.4531 moveto +P$1y +30554.55 357.4688 moveto +P$1r +30553.4719 357.1406 moveto +P$1s +30561.6594 354.7031 moveto +P$1h +30565.0031 352.5938 moveto +P$1k +30571.4719 355.2031 moveto +P$1l +30571.4719 354.2969 moveto +P$1m +30580.7375 355.4531 moveto +P$1y +30584.6594 361.625 moveto +P$1q +30589.1594 353.2344 moveto +P$27 +30587.9719 352.2656 moveto +P$28 +30598.4719 355.2031 moveto +P$1l +30598.4719 354.2969 moveto +P$1m +30607.7375 355.4531 moveto +P$1y +30610.0031 352.5938 moveto +P$1k +30613.925 351.8906 moveto +P$1g +30622.55 357.4688 moveto +P$1r +30621.4719 357.1406 moveto +P$1s +30626.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30433.8 372 moveto +197 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30433.8 380 moveto +197 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +180 48 30221 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +179 47 30221.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +178 46 30222 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +177 45 30222.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +176 44 30223 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +175 43 30223.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +174 42 30224 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +173 41 30224.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +172 40 30225 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +180 48 30217 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +180 48 30217 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +30232 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30232 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30234.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30253.7344 352.9375 moveto +P$14 +30257.6719 355.2031 moveto +P$1l +30257.6719 354.2969 moveto +P$1m +30268.5938 357.0469 moveto +P$1d +30272.2031 352.5938 moveto +P$1k +30281.75 357.4688 moveto +P$1r +30280.6719 357.1406 moveto +P$1s +30289.5938 357.0469 moveto +P$1d +30293.2031 352.5938 moveto +P$1k +30298.3594 353.2344 moveto +P$2p +30297.1719 352.2656 moveto +P$2q +30306.125 354.4531 moveto +P$1b +30306.125 351.8906 moveto +P$1c +30312.9375 355.4531 moveto +P$1y +30319.75 357.4688 moveto +P$1r +30318.6719 357.1406 moveto +P$1s +30326.8594 354.7031 moveto +P$1h +30330.2031 352.5938 moveto +P$1k +30336.6719 355.2031 moveto +P$1l +30336.6719 354.2969 moveto +P$1m +30345.9375 355.4531 moveto +P$1y +30349.8594 361.625 moveto +P$1q +30354.3594 353.2344 moveto +P$27 +30353.1719 352.2656 moveto +P$28 +30363.6719 355.2031 moveto +P$1l +30363.6719 354.2969 moveto +P$1m +30372.9375 355.4531 moveto +P$1y +30375.2031 352.5938 moveto +P$1k +30379.125 351.8906 moveto +P$1g +30387.75 357.4688 moveto +P$1r +30386.6719 357.1406 moveto +P$1s +30391.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30218 372 moveto +178 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30218 380 moveto +178 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +107 48 30078.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +106 47 30079.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +105 46 30079.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +104 45 30080.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +103 44 30080.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +102 43 30081.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +101 42 30081.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +100 41 30082.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +99 40 30082.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +107 48 30074.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +107 48 30074.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +30089.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30089.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30092.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30104.9719 352.2656 moveto +P$2s +30111.925 351.8906 moveto +P$1g +30117.9094 357.7188 moveto +P$1i +30120.0656 357.2656 moveto +P$1j +30127.1125 354.6406 moveto +P$1o +30135.3938 357.0469 moveto +P$2d +30139.1594 353.2344 moveto +P$27 +30137.9719 352.2656 moveto +P$28 +30148.4719 355.2031 moveto +P$1l +30148.4719 354.2969 moveto +P$1m +30157.7375 355.4531 moveto +P$1y +30160.0031 352.5938 moveto +P$1k +30163.925 351.8906 moveto +P$1g +30172.55 357.4688 moveto +P$1r +30171.4719 357.1406 moveto +P$1s +30176.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30075.8 372 moveto +105 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30075.8 380 moveto +105 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +162 48 29881 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +161 47 29881.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +160 46 29882 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +159 45 29882.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +158 44 29883 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +157 43 29883.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +156 42 29884 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +155 41 29884.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +154 40 29885 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +162 48 29877 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +162 48 29877 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +29892 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29892 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29894.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29907.1719 352.2656 moveto +P$2s +29917.9375 355.4531 moveto +P$1y +29924.75 357.4688 moveto +P$1r +29923.6719 357.1406 moveto +P$1s +29932.75 357.4688 moveto +P$1r +29931.6719 357.1406 moveto +P$1s +29938.4531 351.8906 moveto +P$2o +29941.6719 355.2031 moveto +P$1l +29941.6719 354.2969 moveto +P$1m +29950.9375 355.4531 moveto +P$1y +29957.2344 355.7188 moveto +P$1a +29963.1719 352.2656 moveto +P$1n +29970.9688 352.2656 moveto +P$1p +29979.1719 352.2656 moveto +P$2m +29989.1719 352.2656 moveto +P$2j +29996.3594 353.2344 moveto +P$27 +29995.1719 352.2656 moveto +P$28 +30005.6719 355.2031 moveto +P$1l +30005.6719 354.2969 moveto +P$1m +30014.9375 355.4531 moveto +P$1y +30017.2031 352.5938 moveto +P$1k +30021.125 351.8906 moveto +P$1g +30029.75 357.4688 moveto +P$1r +30028.6719 357.1406 moveto +P$1s +30033.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29878 372 moveto +160 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29878 380 moveto +160 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +107 48 29738.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +106 47 29739.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +105 46 29739.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +104 45 29740.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +103 44 29740.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +102 43 29741.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +101 42 29741.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +100 41 29742.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +99 40 29742.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +107 48 29734.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +107 48 29734.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +29749.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29749.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29752.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29764.9719 352.2656 moveto +P$2j +29773.4719 355.2031 moveto +P$1l +29773.4719 354.2969 moveto +P$1m +29783.2531 357.6563 moveto +P$2g +29784.3313 360.2031 moveto +P$2h +29786.925 354.4531 moveto +P$1b +29786.925 351.8906 moveto +P$1c +29795.3938 357.0469 moveto +P$1d +29799.1594 353.2344 moveto +P$27 +29797.9719 352.2656 moveto +P$28 +29808.4719 355.2031 moveto +P$1l +29808.4719 354.2969 moveto +P$1m +29817.7375 355.4531 moveto +P$1y +29820.0031 352.5938 moveto +P$1k +29823.925 351.8906 moveto +P$1g +29832.55 357.4688 moveto +P$1r +29831.4719 357.1406 moveto +P$1s +29836.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29735.8 372 moveto +105 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29735.8 380 moveto +105 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +166 48 29537 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +165 47 29537.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +164 46 29538 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +163 45 29538.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +162 44 29539 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +161 43 29539.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +160 42 29540 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +159 41 29540.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +158 40 29541 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +166 48 29533 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +166 48 29533 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +29548 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29548 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29550.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29563.1719 352.2656 moveto +P$2m +29575.8594 361.625 moveto +P$1q +29578.4063 352.2656 moveto +P$15 +29592.6719 355.2031 moveto +P$1l +29592.6719 354.2969 moveto +P$1m +29601.9375 355.4531 moveto +P$1y +29603.0938 351.8906 moveto +P$2n +29614.3125 354.6406 moveto +P$1o +29618.1719 360.0313 moveto +P$1e +29621.8438 357.7344 moveto +P$1f +29628.1094 357.7188 moveto +P$1i +29630.2656 357.2656 moveto +P$1j +29637.8594 354.7031 moveto +P$1h +29645.75 357.4688 moveto +P$1r +29644.6719 357.1406 moveto +P$1s +29652.3125 354.6406 moveto +P$1o +29656.3594 353.2344 moveto +P$27 +29655.1719 352.2656 moveto +P$28 +29665.6719 355.2031 moveto +P$1l +29665.6719 354.2969 moveto +P$1m +29674.9375 355.4531 moveto +P$1y +29677.2031 352.5938 moveto +P$1k +29681.125 351.8906 moveto +P$1g +29689.75 357.4688 moveto +P$1r +29688.6719 357.1406 moveto +P$1s +29693.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29534 372 moveto +164 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29534 380 moveto +164 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +129 48 29372.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +128 47 29373.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +127 46 29373.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +126 45 29374.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +125 44 29374.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +124 43 29375.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +123 42 29375.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +122 41 29376.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +121 40 29376.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +129 48 29368.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +129 48 29368.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +29383.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29383.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29386.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29403.1281 356.9063 moveto +P$2a +29400.1594 353.2344 moveto +P$2b +29412.2219 352.5469 moveto +P$1z +29420.2219 352.5469 moveto +P$1z +29422.9719 352.2656 moveto +P$2s +29435.55 357.4688 moveto +P$1r +29434.4719 357.1406 moveto +P$1s +29443.55 357.4688 moveto +P$1r +29442.4719 357.1406 moveto +P$1s +29450.2531 355.4531 moveto +P$18 +29446.5813 357.7344 moveto +P$19 +29455.1594 353.2344 moveto +P$27 +29453.9719 352.2656 moveto +P$28 +29464.4719 355.2031 moveto +P$1l +29464.4719 354.2969 moveto +P$1m +29473.7375 355.4531 moveto +P$1y +29476.0031 352.5938 moveto +P$1k +29479.925 351.8906 moveto +P$1g +29488.55 357.4688 moveto +P$1r +29487.4719 357.1406 moveto +P$1s +29492.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29369.8 372 moveto +127 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29369.8 380 moveto +127 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +139 48 29198.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +138 47 29199.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +137 46 29199.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +136 45 29200.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +135 44 29200.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +134 43 29201.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +133 42 29201.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +132 41 29202.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +131 40 29202.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +139 48 29194.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +139 48 29194.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +29209.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29209.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29212.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +29223.7688 352.2656 moveto +P$1p +29231.925 354.4531 moveto +P$1b +29231.925 351.8906 moveto +P$1c +29240.0344 355.7188 moveto +P$1a +29251.55 357.4688 moveto +P$1r +29250.4719 357.1406 moveto +P$1s +29257.5344 353.0625 moveto +P$20 +29257.5344 352.1094 moveto +P$21 +29266.2531 351.8906 moveto +P$2o +29268.1594 353.2344 moveto +P$2p +29266.9719 352.2656 moveto +P$2q +29278.9094 357.7188 moveto +P$1i +29281.0656 357.2656 moveto +P$1j +29286.6594 361.625 moveto +P$1q +29291.1594 353.2344 moveto +P$27 +29289.9719 352.2656 moveto +P$28 +29300.4719 355.2031 moveto +P$1l +29300.4719 354.2969 moveto +P$1m +29309.7375 355.4531 moveto +P$1y +29312.0031 352.5938 moveto +P$1k +29315.925 351.8906 moveto +P$1g +29324.55 357.4688 moveto +P$1r +29323.4719 357.1406 moveto +P$1s +29328.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29195.8 372 moveto +137 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29195.8 380 moveto +137 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +203 48 28960.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +202 47 28961.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +201 46 28961.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +200 45 28962.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +199 44 28962.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +198 43 28963.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +197 42 28963.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +196 41 28964.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +195 40 28964.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +203 48 28956.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +203 48 28956.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28971.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28971.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28974.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28986.2063 352.2656 moveto +P$15 +29000.4719 355.2031 moveto +P$1l +29000.4719 354.2969 moveto +P$1m +29009.7375 355.4531 moveto +P$1y +29010.8938 351.8906 moveto +P$2n +29022.1125 354.6406 moveto +P$1o +29025.9719 360.0313 moveto +P$1e +29029.6438 357.7344 moveto +P$1f +29035.9094 357.7188 moveto +P$1i +29038.0656 357.2656 moveto +P$1j +29045.6594 354.7031 moveto +P$1h +29053.55 357.4688 moveto +P$1r +29052.4719 357.1406 moveto +P$1s +29055.9719 352.2656 moveto +P$29 +29067.9094 357.7188 moveto +P$1i +29070.0656 357.2656 moveto +P$1j +29072.1594 354.4531 moveto +P$2f +29078.925 354.4531 moveto +P$1b +29078.925 351.8906 moveto +P$1c +29086.2531 357.6563 moveto +P$2g +29087.3313 360.2031 moveto +P$2h +29092.9094 357.7188 moveto +P$1i +29095.0656 357.2656 moveto +P$1j +29099.0031 352.5938 moveto +P$1k +29105.4719 355.2031 moveto +P$1l +29105.4719 354.2969 moveto +P$1m +29114.7375 355.4531 moveto +P$1y +29117.1594 353.2344 moveto +P$27 +29115.9719 352.2656 moveto +P$28 +29126.4719 355.2031 moveto +P$1l +29126.4719 354.2969 moveto +P$1m +29135.7375 355.4531 moveto +P$1y +29138.0031 352.5938 moveto +P$1k +29141.925 351.8906 moveto +P$1g +29150.55 357.4688 moveto +P$1r +29149.4719 357.1406 moveto +P$1s +29154.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28957.8 372 moveto +201 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28957.8 380 moveto +201 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +200 48 28725 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +199 47 28725.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +198 46 28726 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +197 45 28726.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +196 44 28727 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +195 43 28727.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +194 42 28728 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +193 41 28728.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +192 40 28729 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +200 48 28721 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +200 48 28721 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28736 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28736 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28738.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28750.4063 352.2656 moveto +P$15 +28764.6719 355.2031 moveto +P$1l +28764.6719 354.2969 moveto +P$1m +28773.9375 355.4531 moveto +P$1y +28775.0938 351.8906 moveto +P$2n +28786.3125 354.6406 moveto +P$1o +28790.1719 360.0313 moveto +P$1e +28793.8438 357.7344 moveto +P$1f +28800.1094 357.7188 moveto +P$1i +28802.2656 357.2656 moveto +P$1j +28809.8594 354.7031 moveto +P$1h +28817.75 357.4688 moveto +P$1r +28816.6719 357.1406 moveto +P$1s +28825.4219 352.5469 moveto +P$1z +28828.0156 358.4219 moveto +P$1w +28830.7344 354.2969 moveto +P$1x +28841.2344 355.7188 moveto +P$1a +28852.2344 355.7188 moveto +P$1a +28861.1094 357.7188 moveto +P$1i +28863.2656 357.2656 moveto +P$1j +28869.9375 355.4531 moveto +P$1y +28873.8594 361.625 moveto +P$1q +28878.3594 353.2344 moveto +P$27 +28877.1719 352.2656 moveto +P$28 +28887.6719 355.2031 moveto +P$1l +28887.6719 354.2969 moveto +P$1m +28896.9375 355.4531 moveto +P$1y +28899.2031 352.5938 moveto +P$1k +28903.125 351.8906 moveto +P$1g +28911.75 357.4688 moveto +P$1r +28910.6719 357.1406 moveto +P$1s +28915.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28722 372 moveto +198 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28722 380 moveto +198 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +155 48 26141.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +154 47 26142.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +153 46 26142.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +152 45 26143.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +151 44 26143.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +150 43 26144.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +149 42 26144.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +148 41 26145.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +147 40 26145.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +155 48 26137.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +155 48 26137.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26152.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26152.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26155.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26169.1594 353.2344 moveto +P$27 +26167.9719 352.2656 moveto +P$28 +26178.4719 355.2031 moveto +P$1l +26178.4719 354.2969 moveto +P$1m +26187.7375 355.4531 moveto +P$1y +26190.0031 352.5938 moveto +P$1k +26193.925 351.8906 moveto +P$1g +26202.55 357.4688 moveto +P$1r +26201.4719 357.1406 moveto +P$1s +26206.0031 352.5938 moveto +P$1k +26211.1594 353.2344 moveto +P$2p +26209.9719 352.2656 moveto +P$2q +26221.9094 357.7188 moveto +P$1i +26224.0656 357.2656 moveto +P$1j +26228.0031 352.5938 moveto +P$1k +26234.9094 357.7188 moveto +P$1i +26237.0656 357.2656 moveto +P$1j +26241.1594 353.2344 moveto +P$27 +26239.9719 352.2656 moveto +P$28 +26251.7375 355.4531 moveto +P$1y +26255.4719 355.2031 moveto +P$1l +26255.4719 354.2969 moveto +P$1m +26260.1594 354.4531 moveto +P$2f +26266.925 354.4531 moveto +P$1b +26266.925 351.8906 moveto +P$1c +26274.2531 355.4531 moveto +P$18 +26270.5813 357.7344 moveto +P$19 +26283.55 357.4688 moveto +P$1r +26282.4719 357.1406 moveto +P$1s +26289.7375 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26138.8 372 moveto +153 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26138.8 380 moveto +153 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +167 48 32346.8 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +166 47 32347.3 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +165 46 32347.8 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +164 45 32348.3 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +163 44 32348.8 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +162 43 32349.3 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +161 42 32349.8 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +160 41 32350.3 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +159 40 32350.8 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +167 48 32342.8 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +167 48 32342.8 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +32357.8 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32357.8 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32360.7688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32374.1594 105.2344 moveto +P$27 +32372.9719 104.2656 moveto +P$28 +32384.7375 107.4531 moveto +P$1y +32391.55 109.4688 moveto +P$1r +32390.4719 109.1406 moveto +P$1s +32397.2531 103.8906 moveto +P$2o +32403.55 109.4688 moveto +P$1r +32402.4719 109.1406 moveto +P$1s +32409.7375 107.4531 moveto +P$1y +32416.55 109.4688 moveto +P$1r +32415.4719 109.1406 moveto +P$1s +32424.3938 109.0469 moveto +P$1d +32431.6594 106.7031 moveto +P$1h +32439.55 109.4688 moveto +P$1r +32438.4719 109.1406 moveto +P$1s +32443.1594 105.2344 moveto +P$27 +32441.9719 104.2656 moveto +P$28 +32452.9094 109.7188 moveto +P$1i +32455.0656 109.2656 moveto +P$1j +32461.7375 107.4531 moveto +P$1y +32465.9094 109.7188 moveto +P$1i +32468.0656 109.2656 moveto +P$1j +32476.0344 107.7188 moveto +P$1a +32487.55 109.4688 moveto +P$1r +32486.4719 109.1406 moveto +P$1s +32491.0031 104.5938 moveto +P$1k +32500.55 109.4688 moveto +P$1r +32499.4719 109.1406 moveto +P$1s +32506.7375 107.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32343.8 124 moveto +165 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32343.8 132 moveto +165 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +108 48 32203 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +107 47 32203.5 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +106 46 32204 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +105 45 32204.5 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +104 44 32205 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +103 43 32205.5 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +102 42 32206 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +101 41 32206.5 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +100 40 32207 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +108 48 32199 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +108 48 32199 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +32214 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32214 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32216.9688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32230.3594 105.2344 moveto +P$27 +32229.1719 104.2656 moveto +P$28 +32240.9375 107.4531 moveto +P$1y +32247.75 109.4688 moveto +P$1r +32246.6719 109.1406 moveto +P$1s +32253.4531 103.8906 moveto +P$2o +32259.75 109.4688 moveto +P$1r +32258.6719 109.1406 moveto +P$1s +32265.9375 107.4531 moveto +P$1y +32272.75 109.4688 moveto +P$1r +32271.6719 109.1406 moveto +P$1s +32280.5938 109.0469 moveto +P$1d +32287.8594 106.7031 moveto +P$1h +32295.75 109.4688 moveto +P$1r +32294.6719 109.1406 moveto +P$1s +32302.3125 106.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32200 124 moveto +106 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32200 132 moveto +106 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +167 48 32202.8 220 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +166 47 32203.3 220.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +165 46 32203.8 221 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +164 45 32204.3 221.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +163 44 32204.8 222 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +162 43 32205.3 222.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +161 42 32205.8 223 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +160 41 32206.3 223.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +159 40 32206.8 224 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +167 48 32198.8 216 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +167 48 32198.8 216 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +32213.8 232 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32213.8 232 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32216.7688 237.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32230.1594 229.2344 moveto +P$27 +32228.9719 228.2656 moveto +P$28 +32242.55 233.4688 moveto +P$1r +32241.4719 233.1406 moveto +P$1s +32248.7375 231.4531 moveto +P$1y +32253.2531 227.8906 moveto +P$2o +32259.55 233.4688 moveto +P$1r +32258.4719 233.1406 moveto +P$1s +32265.7375 231.4531 moveto +P$1y +32272.55 233.4688 moveto +P$1r +32271.4719 233.1406 moveto +P$1s +32280.3938 233.0469 moveto +P$1d +32287.6594 230.7031 moveto +P$1h +32295.55 233.4688 moveto +P$1r +32294.4719 233.1406 moveto +P$1s +32299.1594 229.2344 moveto +P$27 +32297.9719 228.2656 moveto +P$28 +32308.9094 233.7188 moveto +P$1i +32311.0656 233.2656 moveto +P$1j +32317.7375 231.4531 moveto +P$1y +32321.9094 233.7188 moveto +P$1i +32324.0656 233.2656 moveto +P$1j +32332.0344 231.7188 moveto +P$1a +32343.55 233.4688 moveto +P$1r +32342.4719 233.1406 moveto +P$1s +32347.0031 228.5938 moveto +P$1k +32356.55 233.4688 moveto +P$1r +32355.4719 233.1406 moveto +P$1s +32362.7375 231.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32199.8 248 moveto +165 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32199.8 256 moveto +165 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +86 48 32604 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +85 47 32604.5 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +84 46 32605 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +83 45 32605.5 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +82 44 32606 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +81 43 32606.5 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +80 42 32607 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +79 41 32607.5 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +78 40 32608 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +86 48 32600 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +86 48 32600 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +32615 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32615 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32617.9688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32630.1719 104.2656 moveto +P$2i +32638.5938 109.0469 moveto +P$1d +32641.125 106.4531 moveto +P$1b +32641.125 103.8906 moveto +P$1c +32645.2031 104.5938 moveto +P$1k +32649.125 106.4531 moveto +P$1b +32649.125 103.8906 moveto +P$1c +32655.1094 109.7188 moveto +P$1i +32657.2656 109.2656 moveto +P$1j +32660.125 103.8906 moveto +P$1g +32663.125 106.4531 moveto +P$1b +32663.125 103.8906 moveto +P$1c +32665.6563 106.4531 moveto +P$2k +32676.75 109.4688 moveto +P$1r +32675.6719 109.1406 moveto +P$1s +32682.9375 107.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32601 124 moveto +84 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32601 132 moveto +84 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +96 48 32893 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +95 47 32893.5 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +94 46 32894 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +93 45 32894.5 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +92 44 32895 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +91 43 32895.5 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +90 42 32896 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +89 41 32896.5 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +88 40 32897 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +96 48 32889 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +96 48 32889 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +32904 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32904 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32906.9688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32920.3594 105.2344 moveto +P$2p +32919.1719 104.2656 moveto +P$2q +32930.6719 107.2031 moveto +P$1l +32930.6719 106.2969 moveto +P$1m +32940.8594 106.7031 moveto +P$1h +32943.0156 110.4219 moveto +P$1w +32945.7344 106.2969 moveto +P$1x +32956.2344 107.7188 moveto +P$1a +32967.75 109.4688 moveto +P$1r +32966.6719 109.1406 moveto +P$1s +32975.5938 109.0469 moveto +P$1d +32979.2031 104.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32890 124 moveto +94 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32890 132 moveto +94 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +76 48 32782 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +75 47 32782.5 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +74 46 32783 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +73 45 32783.5 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +72 44 32784 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +71 43 32784.5 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +70 42 32785 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +69 41 32785.5 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +68 40 32786 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +76 48 32778 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +76 48 32778 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +32793 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32793 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32795.9688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +32808.1719 104.2656 moveto +P$2i +32816.5938 109.0469 moveto +P$1d +32823.4531 107.4531 moveto +P$18 +32819.7813 109.7344 moveto +P$19 +32832.75 109.4688 moveto +P$1r +32831.6719 109.1406 moveto +P$1s +32840.5938 106.4531 moveto +P$2c +32841.1719 104.2656 moveto +P$2i +32848.4531 107.4531 moveto +P$18 +32844.7813 109.7344 moveto +P$19 +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32779 124 moveto +74 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32779 132 moveto +74 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +126 48 33102 96 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +125 47 33102.5 96.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +124 46 33103 97 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +123 45 33103.5 97.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +122 44 33104 98 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +121 43 33104.5 98.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +120 42 33105 99 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +119 41 33105.5 99.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +118 40 33106 100 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +126 48 33098 92 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +126 48 33098 92 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +33113 108 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +33113 108 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +33115.9688 113.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +33133.4219 104.5469 moveto +P$1z +33141.75 109.4688 moveto +P$1r +33140.6719 109.1406 moveto +P$1s +33147.1094 109.7188 moveto +P$1i +33149.2656 109.2656 moveto +P$1j +33155.9375 107.4531 moveto +P$1y +33161.8594 106.7031 moveto +P$1h +33169.5938 109.0469 moveto +P$2d +33178.7344 104.9375 moveto +P$14 +33182.6719 107.2031 moveto +P$1l +33182.6719 106.2969 moveto +P$1m +33193.5938 109.0469 moveto +P$1d +33197.2031 104.5938 moveto +P$1k +33206.75 109.4688 moveto +P$1r +33205.6719 109.1406 moveto +P$1s +33214.5938 109.0469 moveto +P$1d +33218.2031 104.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +33099 124 moveto +124 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +33099 132 moveto +124 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +65 48 26481.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +64 47 26482.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +63 46 26482.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +62 45 26483.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +61 44 26483.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +60 43 26484.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +59 42 26484.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +58 41 26485.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +57 40 26485.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +65 48 26477.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +65 48 26477.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26492.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26492.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26495.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26507.9719 352.2656 moveto +P$2j +26516.4719 355.2031 moveto +P$1l +26516.4719 354.2969 moveto +P$1m +26526.2531 357.6563 moveto +P$2g +26527.3313 360.2031 moveto +P$2h +26529.925 354.4531 moveto +P$1b +26529.925 351.8906 moveto +P$1c +26538.3938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26478.8 372 moveto +63 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26478.8 380 moveto +63 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +70 48 26695 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +69 47 26695.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +68 46 26696 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +67 45 26696.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +66 44 26697 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +65 43 26697.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +64 42 26698 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +63 41 26698.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +62 40 26699 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +70 48 26691 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +70 48 26691 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26706 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26706 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26708.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26724.1094 353.4375 moveto +P$16 +26723.4375 352.2656 moveto +P$17 +26733.4531 355.4531 moveto +P$18 +26729.7813 357.7344 moveto +P$19 +26742.2344 355.7188 moveto +P$1a +26748.125 354.4531 moveto +P$1b +26748.125 351.8906 moveto +P$1c +26756.5938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26692 372 moveto +68 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26692 380 moveto +68 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +107 48 26912.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +106 47 26913.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +105 46 26913.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +104 45 26914.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +103 44 26914.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +102 43 26915.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +101 42 26915.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +100 41 26916.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +99 40 26916.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +107 48 26908.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +107 48 26908.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +26923.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26923.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26926.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +26940.1594 353.2344 moveto +P$27 +26938.9719 352.2656 moveto +P$28 +26952.55 357.4688 moveto +P$1r +26951.4719 357.1406 moveto +P$1s +26958.7375 355.4531 moveto +P$1y +26965.0344 355.7188 moveto +P$1a +26970.925 354.4531 moveto +P$1b +26970.925 351.8906 moveto +P$1c +26978.1125 354.6406 moveto +P$1o +26985.1125 354.6406 moveto +P$1o +26987.925 354.4531 moveto +P$1b +26987.925 351.8906 moveto +P$1c +26993.4719 355.2031 moveto +P$1l +26993.4719 354.2969 moveto +P$1m +27004.3938 357.0469 moveto +P$1d +27011.1125 354.6406 moveto +P$1o +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26909.8 372 moveto +105 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26909.8 380 moveto +105 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +132 48 27180 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +131 47 27180.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +130 46 27181 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +129 45 27181.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +128 44 27182 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +127 43 27182.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +126 42 27183 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +125 41 27183.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +124 40 27184 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +132 48 27176 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +132 48 27176 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27191 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27191 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27193.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27205.4063 352.2656 moveto +P$15 +27222.75 357.4688 moveto +P$1r +27221.6719 357.1406 moveto +P$1s +27229.8438 357.7344 moveto +P$1f +27226.1719 355.4531 moveto +P$22 +27234.3594 353.2344 moveto +P$2p +27233.1719 352.2656 moveto +P$2q +27247.75 357.4688 moveto +P$1r +27246.6719 357.1406 moveto +P$1s +27249.3594 354.4531 moveto +P$2f +27261.4219 352.5469 moveto +P$1z +27264.0156 358.4219 moveto +P$1w +27266.7344 354.2969 moveto +P$1x +27273.1719 360.0313 moveto +P$1e +27276.8438 357.7344 moveto +P$1f +27281.1719 360.0313 moveto +P$1e +27284.8438 357.7344 moveto +P$1f +27290.6719 355.2031 moveto +P$1l +27290.6719 354.2969 moveto +P$1m +27299.9375 355.4531 moveto +P$1y +27302.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27177 372 moveto +130 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27177 380 moveto +130 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +199 48 21005.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +198 47 21006.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +197 46 21006.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +196 45 21007.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +195 44 21007.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +194 43 21008.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +193 42 21008.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +192 41 21009.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +191 40 21009.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +199 48 21001.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +199 48 21001.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +21016.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21016.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21019.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21034.9094 353.4375 moveto +P$16 +21034.2375 352.2656 moveto +P$17 +21040.9719 360.0313 moveto +P$1e +21044.6438 357.7344 moveto +P$1f +21048.9719 360.0313 moveto +P$1e +21052.6438 357.7344 moveto +P$1f +21055.925 351.8906 moveto +P$1g +21058.925 354.4531 moveto +P$1b +21058.925 351.8906 moveto +P$1c +21066.6594 354.7031 moveto +P$1h +21071.9094 357.7188 moveto +P$1i +21074.0656 357.2656 moveto +P$1j +21078.0031 352.5938 moveto +P$1k +21081.925 354.4531 moveto +P$1b +21081.925 351.8906 moveto +P$1c +21087.4719 355.2031 moveto +P$1l +21087.4719 354.2969 moveto +P$1m +21098.3938 357.0469 moveto +P$1d +21102.1594 353.2344 moveto +P$2p +21100.9719 352.2656 moveto +P$2q +21109.925 354.4531 moveto +P$1b +21109.925 351.8906 moveto +P$1c +21116.7375 355.4531 moveto +P$1y +21123.55 357.4688 moveto +P$1r +21122.4719 357.1406 moveto +P$1s +21130.6594 354.7031 moveto +P$1h +21134.0031 352.5938 moveto +P$1k +21140.4719 355.2031 moveto +P$1l +21140.4719 354.2969 moveto +P$1m +21149.7375 355.4531 moveto +P$1y +21153.6594 361.625 moveto +P$1q +21158.1594 353.2344 moveto +P$27 +21156.9719 352.2656 moveto +P$28 +21167.4719 355.2031 moveto +P$1l +21167.4719 354.2969 moveto +P$1m +21176.7375 355.4531 moveto +P$1y +21179.0031 352.5938 moveto +P$1k +21182.925 351.8906 moveto +P$1g +21191.55 357.4688 moveto +P$1r +21190.4719 357.1406 moveto +P$1s +21195.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21002.8 372 moveto +197 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21002.8 380 moveto +197 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +163 48 22163.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +162 47 22164.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +161 46 22164.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +160 45 22165.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +159 44 22165.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +158 43 22166.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +157 42 22166.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +156 41 22167.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +155 40 22167.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +163 48 22159.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +163 48 22159.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22174.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22174.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22177.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22191.1594 356.8438 moveto +P$1t +22191.1594 353.2344 moveto +P$1u +22189.9719 352.2656 moveto +P$1v +22200.4719 355.2031 moveto +P$1l +22200.4719 354.2969 moveto +P$1m +22208.4719 355.2031 moveto +P$1l +22208.4719 354.2969 moveto +P$1m +22213.8938 351.8906 moveto +P$2n +22226.0344 355.7188 moveto +P$1a +22234.9094 357.7188 moveto +P$1i +22237.0656 357.2656 moveto +P$1j +22243.7375 355.4531 moveto +P$1y +22244.8938 351.8906 moveto +P$2n +22254.9094 353.4375 moveto +P$16 +22254.2375 352.2656 moveto +P$17 +22260.9719 360.0313 moveto +P$1e +22264.6438 357.7344 moveto +P$1f +22268.9719 360.0313 moveto +P$1e +22272.6438 357.7344 moveto +P$1f +22275.925 351.8906 moveto +P$1g +22278.925 354.4531 moveto +P$1b +22278.925 351.8906 moveto +P$1c +22286.6594 354.7031 moveto +P$1h +22291.9094 357.7188 moveto +P$1i +22294.0656 357.2656 moveto +P$1j +22298.0031 352.5938 moveto +P$1k +22301.925 354.4531 moveto +P$1b +22301.925 351.8906 moveto +P$1c +22307.4719 355.2031 moveto +P$1l +22307.4719 354.2969 moveto +P$1m +22318.3938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22160.8 372 moveto +161 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22160.8 380 moveto +161 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +94 48 22199 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +93 47 22199.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +92 46 22200 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +91 45 22200.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +90 44 22201 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +89 43 22201.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +88 42 22202 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +87 41 22202.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +86 40 22203 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +94 48 22195 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +94 48 22195 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22210 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22210 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22212.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22226.3594 480.8438 moveto +P$1t +22226.3594 477.2344 moveto +P$1u +22225.1719 476.2656 moveto +P$1v +22235.6719 479.2031 moveto +P$1l +22235.6719 478.2969 moveto +P$1m +22243.6719 479.2031 moveto +P$1l +22243.6719 478.2969 moveto +P$1m +22249.0938 475.8906 moveto +P$2n +22261.2344 479.7188 moveto +P$1a +22270.1094 481.7188 moveto +P$1i +22272.2656 481.2656 moveto +P$1j +22278.9375 479.4531 moveto +P$1y +22280.0938 475.8906 moveto +P$2n +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22196 496 moveto +92 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22196 504 moveto +92 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +136 48 21814 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +135 47 21814.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +134 46 21815 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +133 45 21815.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +132 44 21816 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +131 43 21816.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +130 42 21817 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +129 41 21817.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +128 40 21818 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +136 48 21810 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +136 48 21810 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +21825 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21825 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21827.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21841.3594 356.8438 moveto +P$1t +21841.3594 353.2344 moveto +P$1u +21840.1719 352.2656 moveto +P$1v +21850.6719 355.2031 moveto +P$1l +21850.6719 354.2969 moveto +P$1m +21858.6719 355.2031 moveto +P$1l +21858.6719 354.2969 moveto +P$1m +21864.0938 351.8906 moveto +P$2n +21876.2344 355.7188 moveto +P$1a +21885.1094 357.7188 moveto +P$1i +21887.2656 357.2656 moveto +P$1j +21893.9375 355.4531 moveto +P$1y +21895.0938 351.8906 moveto +P$2n +21903.3594 353.2344 moveto +P$27 +21902.1719 352.2656 moveto +P$28 +21912.6719 355.2031 moveto +P$1l +21912.6719 354.2969 moveto +P$1m +21921.9375 355.4531 moveto +P$1y +21924.2031 352.5938 moveto +P$1k +21928.125 351.8906 moveto +P$1g +21936.75 357.4688 moveto +P$1r +21935.6719 357.1406 moveto +P$1s +21940.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21811 372 moveto +134 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21811 380 moveto +134 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +59 48 21719.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +58 47 21720.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +57 46 21720.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +56 45 21721.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +55 44 21721.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +54 43 21722.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +53 42 21722.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +52 41 21723.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +51 40 21723.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +59 48 21715.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +59 48 21715.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +21730.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21730.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21733.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21750.1281 356.9063 moveto +P$2a +21747.1594 353.2344 moveto +P$2b +21756.4719 355.2031 moveto +P$1l +21756.4719 354.2969 moveto +P$1m +21761.925 351.8906 moveto +P$1g +21770.55 357.4688 moveto +P$1r +21769.4719 357.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21716.8 372 moveto +57 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21716.8 380 moveto +57 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +148 48 22178 716 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +147 47 22178.5 716.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +146 46 22179 717 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +145 45 22179.5 717.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +144 44 22180 718 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +143 43 22180.5 718.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +142 42 22181 719 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +141 41 22181.5 719.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +140 40 22182 720 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +148 48 22174 712 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +148 48 22174 712 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22189 728 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22189 728 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22191.9688 733.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22209.4219 724.5469 moveto +P$1z +22212.0156 730.4219 moveto +P$1w +22214.7344 726.2969 moveto +P$1x +22224.8438 729.7344 moveto +P$1f +22221.1719 727.4531 moveto +P$22 +22227.4063 724.2656 moveto +P$15 +22241.6719 727.2031 moveto +P$1l +22241.6719 726.2969 moveto +P$1m +22250.9375 727.4531 moveto +P$1y +22252.0938 723.8906 moveto +P$2n +22263.3125 726.6406 moveto +P$1o +22267.1719 732.0313 moveto +P$1e +22270.8438 729.7344 moveto +P$1f +22277.1094 729.7188 moveto +P$1i +22279.2656 729.2656 moveto +P$1j +22286.8594 726.7031 moveto +P$1h +22294.75 729.4688 moveto +P$1r +22293.6719 729.1406 moveto +P$1s +22295.9688 724.2656 moveto +P$1p +22307.1094 729.7188 moveto +P$1i +22309.2656 729.2656 moveto +P$1j +22316.8438 729.7344 moveto +P$1f +22313.1719 727.4531 moveto +P$22 +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22175 744 moveto +146 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22175 752 moveto +146 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +74 48 22078 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +73 47 22078.5 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +72 46 22079 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +71 45 22079.5 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +70 44 22080 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +69 43 22080.5 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +68 42 22081 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +67 41 22081.5 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +66 40 22082 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +74 48 22074 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +74 48 22074 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22089 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22089 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22091.9688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22102.9688 600.2656 moveto +P$1p +22116.5938 605.0469 moveto +P$2d +22124.75 605.4688 moveto +P$1r +22123.6719 605.1406 moveto +P$1s +22132.2344 603.7188 moveto +P$1a +22143.75 605.4688 moveto +P$1r +22142.6719 605.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22075 620 moveto +72 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22075 628 moveto +72 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +143 48 21985.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +142 47 21986.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +141 46 21986.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +140 45 21987.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +139 44 21987.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +138 43 21988.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +137 42 21988.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +136 41 21989.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +135 40 21989.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +143 48 21981.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +143 48 21981.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +21996.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21996.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21999.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22010.7688 352.2656 moveto +P$1p +22024.3938 357.0469 moveto +P$2d +22032.55 357.4688 moveto +P$1r +22031.4719 357.1406 moveto +P$1s +22040.0344 355.7188 moveto +P$1a +22051.55 357.4688 moveto +P$1r +22050.4719 357.1406 moveto +P$1s +22056.9094 353.4375 moveto +P$16 +22056.2375 352.2656 moveto +P$17 +22062.9719 360.0313 moveto +P$1e +22066.6438 357.7344 moveto +P$1f +22070.9719 360.0313 moveto +P$1e +22074.6438 357.7344 moveto +P$1f +22077.925 351.8906 moveto +P$1g +22080.925 354.4531 moveto +P$1b +22080.925 351.8906 moveto +P$1c +22088.6594 354.7031 moveto +P$1h +22093.9094 357.7188 moveto +P$1i +22096.0656 357.2656 moveto +P$1j +22100.0031 352.5938 moveto +P$1k +22103.925 354.4531 moveto +P$1b +22103.925 351.8906 moveto +P$1c +22109.4719 355.2031 moveto +P$1l +22109.4719 354.2969 moveto +P$1m +22120.3938 357.0469 moveto +P$1d +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21982.8 372 moveto +141 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21982.8 380 moveto +141 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +101 48 22062.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +100 47 22063.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +99 46 22063.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +98 45 22064.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +97 44 22064.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +96 43 22065.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +95 42 22065.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +94 41 22066.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +93 40 22066.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +101 48 22058.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +101 48 22058.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22073.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22073.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22076.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22088.2063 476.2656 moveto +P$15 +22102.4719 479.2031 moveto +P$1l +22102.4719 478.2969 moveto +P$1m +22111.7375 479.4531 moveto +P$1y +22112.8938 475.8906 moveto +P$2n +22124.1125 478.6406 moveto +P$1o +22127.9719 484.0313 moveto +P$1e +22131.6438 481.7344 moveto +P$1f +22137.9094 481.7188 moveto +P$1i +22140.0656 481.2656 moveto +P$1j +22147.6594 478.7031 moveto +P$1h +22155.55 481.4688 moveto +P$1r +22154.4719 481.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22059.8 496 moveto +99 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22059.8 504 moveto +99 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +206 48 21240 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +205 47 21240.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +204 46 21241 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +203 45 21241.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +202 44 21242 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +201 43 21242.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +200 42 21243 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +199 41 21243.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +198 40 21244 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +206 48 21236 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +206 48 21236 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +21251 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21251 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21253.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21265.4063 352.2656 moveto +P$15 +21279.6719 355.2031 moveto +P$1l +21279.6719 354.2969 moveto +P$1m +21288.9375 355.4531 moveto +P$1y +21290.0938 351.8906 moveto +P$2n +21301.3125 354.6406 moveto +P$1o +21305.1719 360.0313 moveto +P$1e +21308.8438 357.7344 moveto +P$1f +21315.1094 357.7188 moveto +P$1i +21317.2656 357.2656 moveto +P$1j +21324.8594 354.7031 moveto +P$1h +21332.75 357.4688 moveto +P$1r +21331.6719 357.1406 moveto +P$1s +21335.1719 352.2656 moveto +P$29 +21347.1094 357.7188 moveto +P$1i +21349.2656 357.2656 moveto +P$1j +21351.3594 354.4531 moveto +P$2f +21358.125 354.4531 moveto +P$1b +21358.125 351.8906 moveto +P$1c +21365.4531 357.6563 moveto +P$2g +21366.5313 360.2031 moveto +P$2h +21372.1094 357.7188 moveto +P$1i +21374.2656 357.2656 moveto +P$1j +21378.2031 352.5938 moveto +P$1k +21382.125 354.4531 moveto +P$1b +21382.125 351.8906 moveto +P$1c +21387.6719 355.2031 moveto +P$1l +21387.6719 354.2969 moveto +P$1m +21396.9375 355.4531 moveto +P$1y +21399.3594 353.2344 moveto +P$27 +21398.1719 352.2656 moveto +P$28 +21408.6719 355.2031 moveto +P$1l +21408.6719 354.2969 moveto +P$1m +21417.9375 355.4531 moveto +P$1y +21420.2031 352.5938 moveto +P$1k +21424.125 351.8906 moveto +P$1g +21432.75 357.4688 moveto +P$1r +21431.6719 357.1406 moveto +P$1s +21436.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21237 372 moveto +204 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21237 380 moveto +204 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +200 48 20770 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +199 47 20770.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +198 46 20771 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +197 45 20771.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +196 44 20772 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +195 43 20772.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +194 42 20773 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +193 41 20773.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +192 40 20774 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +200 48 20766 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +200 48 20766 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +20781 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +20781 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +20783.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +20795.4063 352.2656 moveto +P$15 +20809.6719 355.2031 moveto +P$1l +20809.6719 354.2969 moveto +P$1m +20818.9375 355.4531 moveto +P$1y +20820.0938 351.8906 moveto +P$2n +20831.3125 354.6406 moveto +P$1o +20835.1719 360.0313 moveto +P$1e +20838.8438 357.7344 moveto +P$1f +20845.1094 357.7188 moveto +P$1i +20847.2656 357.2656 moveto +P$1j +20854.8594 354.7031 moveto +P$1h +20862.75 357.4688 moveto +P$1r +20861.6719 357.1406 moveto +P$1s +20870.4219 352.5469 moveto +P$1z +20873.0156 358.4219 moveto +P$1w +20875.7344 354.2969 moveto +P$1x +20886.2344 355.7188 moveto +P$1a +20897.2344 355.7188 moveto +P$1a +20906.1094 357.7188 moveto +P$1i +20908.2656 357.2656 moveto +P$1j +20914.9375 355.4531 moveto +P$1y +20918.8594 361.625 moveto +P$1q +20923.3594 353.2344 moveto +P$27 +20922.1719 352.2656 moveto +P$28 +20932.6719 355.2031 moveto +P$1l +20932.6719 354.2969 moveto +P$1m +20941.9375 355.4531 moveto +P$1y +20944.2031 352.5938 moveto +P$1k +20948.125 351.8906 moveto +P$1g +20956.75 357.4688 moveto +P$1r +20955.6719 357.1406 moveto +P$1s +20960.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +20767 372 moveto +198 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +20767 380 moveto +198 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +124 48 22190.5 592 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +123 47 22191 592.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +122 46 22191.5 593 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +121 45 22192 593.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +120 44 22192.5 594 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +119 43 22193 594.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +118 42 22193.5 595 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +117 41 22194 595.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +116 40 22194.5 596 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +124 48 22186.5 588 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +124 48 22186.5 588 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +22201.5 604 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22201.5 604 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22204.4688 609.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +22215.9063 600.2656 moveto +P$15 +22230.1719 603.2031 moveto +P$1l +22230.1719 602.2969 moveto +P$1m +22239.4375 603.4531 moveto +P$1y +22240.5938 599.8906 moveto +P$2n +22251.8125 602.6406 moveto +P$1o +22255.6719 608.0313 moveto +P$1e +22259.3438 605.7344 moveto +P$1f +22265.6094 605.7188 moveto +P$1i +22267.7656 605.2656 moveto +P$1j +22275.3594 602.7031 moveto +P$1h +22283.25 605.4688 moveto +P$1r +22282.1719 605.1406 moveto +P$1s +22284.4688 600.2656 moveto +P$1p +22295.6094 605.7188 moveto +P$1i +22297.7656 605.2656 moveto +P$1j +22305.3438 605.7344 moveto +P$1f +22301.6719 603.4531 moveto +P$22 +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22187.5 620 moveto +122 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22187.5 628 moveto +122 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +203 48 21481.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +202 47 21482.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +201 46 21482.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +200 45 21483.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +199 44 21483.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +198 43 21484.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +197 42 21484.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +196 41 21485.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +195 40 21485.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +203 48 21477.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +203 48 21477.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +21492.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21492.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21495.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +21507.2063 352.2656 moveto +P$15 +21521.4719 355.2031 moveto +P$1l +21521.4719 354.2969 moveto +P$1m +21530.7375 355.4531 moveto +P$1y +21531.8938 351.8906 moveto +P$2n +21543.1125 354.6406 moveto +P$1o +21546.9719 360.0313 moveto +P$1e +21550.6438 357.7344 moveto +P$1f +21556.9094 357.7188 moveto +P$1i +21559.0656 357.2656 moveto +P$1j +21566.6594 354.7031 moveto +P$1h +21574.55 357.4688 moveto +P$1r +21573.4719 357.1406 moveto +P$1s +21576.9719 352.2656 moveto +P$29 +21588.9094 357.7188 moveto +P$1i +21591.0656 357.2656 moveto +P$1j +21593.1594 354.4531 moveto +P$2f +21599.925 354.4531 moveto +P$1b +21599.925 351.8906 moveto +P$1c +21607.2531 357.6563 moveto +P$2g +21608.3313 360.2031 moveto +P$2h +21613.9094 357.7188 moveto +P$1i +21616.0656 357.2656 moveto +P$1j +21620.0031 352.5938 moveto +P$1k +21626.4719 355.2031 moveto +P$1l +21626.4719 354.2969 moveto +P$1m +21635.7375 355.4531 moveto +P$1y +21638.1594 353.2344 moveto +P$27 +21636.9719 352.2656 moveto +P$28 +21647.4719 355.2031 moveto +P$1l +21647.4719 354.2969 moveto +P$1m +21656.7375 355.4531 moveto +P$1y +21659.0031 352.5938 moveto +P$1k +21662.925 351.8906 moveto +P$1g +21671.55 357.4688 moveto +P$1r +21670.4719 357.1406 moveto +P$1s +21675.0031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21478.8 372 moveto +201 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21478.8 380 moveto +201 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +128 48 30692 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +127 47 30692.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +126 46 30693 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +125 45 30693.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +124 44 30694 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +123 43 30694.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +122 42 30695 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +121 41 30695.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +120 40 30696 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +128 48 30688 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +128 48 30688 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +30703 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30703 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30705.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +30723.4219 352.5469 moveto +P$1z +30727.2031 352.5938 moveto +P$1k +30734.1094 357.7188 moveto +P$1i +30736.2656 357.2656 moveto +P$1j +30742.9375 355.4531 moveto +P$1y +30747.4531 351.8906 moveto +P$2o +30748.125 351.8906 moveto +P$1g +30756.75 357.4688 moveto +P$1r +30755.6719 357.1406 moveto +P$1s +30764.75 357.4688 moveto +P$1r +30763.6719 357.1406 moveto +P$1s +30768.2031 352.5938 moveto +P$1k +30773.3594 353.2344 moveto +P$27 +30772.1719 352.2656 moveto +P$28 +30782.6719 355.2031 moveto +P$1l +30782.6719 354.2969 moveto +P$1m +30791.9375 355.4531 moveto +P$1y +30794.2031 352.5938 moveto +P$1k +30798.125 351.8906 moveto +P$1g +30806.75 357.4688 moveto +P$1r +30805.6719 357.1406 moveto +P$1s +30810.2031 352.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30689 372 moveto +126 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30689 380 moveto +126 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +166 48 28962 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +165 47 28962.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +164 46 28963 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +163 45 28963.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +162 44 28964 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +161 43 28964.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +160 42 28965 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +159 41 28965.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +158 40 28966 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +166 48 28958 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +166 48 28958 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28973 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28973 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28975.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28988.1719 476.2656 moveto +P$2m +29000.8594 485.625 moveto +P$1q +29003.4063 476.2656 moveto +P$15 +29017.6719 479.2031 moveto +P$1l +29017.6719 478.2969 moveto +P$1m +29026.9375 479.4531 moveto +P$1y +29028.0938 475.8906 moveto +P$2n +29039.3125 478.6406 moveto +P$1o +29043.1719 484.0313 moveto +P$1e +29046.8438 481.7344 moveto +P$1f +29053.1094 481.7188 moveto +P$1i +29055.2656 481.2656 moveto +P$1j +29062.8594 478.7031 moveto +P$1h +29070.75 481.4688 moveto +P$1r +29069.6719 481.1406 moveto +P$1s +29077.3125 478.6406 moveto +P$1o +29081.3594 477.2344 moveto +P$27 +29080.1719 476.2656 moveto +P$28 +29090.6719 479.2031 moveto +P$1l +29090.6719 478.2969 moveto +P$1m +29099.9375 479.4531 moveto +P$1y +29102.2031 476.5938 moveto +P$1k +29106.125 475.8906 moveto +P$1g +29114.75 481.4688 moveto +P$1r +29113.6719 481.1406 moveto +P$1s +29118.2031 476.5938 moveto +P$1k +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28959 496 moveto +164 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28959 504 moveto +164 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +156 48 28771 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +155 47 28771.5 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +154 46 28772 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +153 45 28772.5 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +152 44 28773 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +151 43 28773.5 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +150 42 28774 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +149 41 28774.5 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +148 40 28775 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +156 48 28767 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +156 48 28767 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28782 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28782 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28784.9688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28798.3594 477.2344 moveto +P$27 +28797.1719 476.2656 moveto +P$28 +28810.75 481.4688 moveto +P$1r +28809.6719 481.1406 moveto +P$1s +28816.9375 479.4531 moveto +P$1y +28822.3125 478.6406 moveto +P$1o +28827.6719 479.2031 moveto +P$1l +28827.6719 478.2969 moveto +P$1m +28838.5938 481.0469 moveto +P$1d +28844.1094 481.7188 moveto +P$1i +28846.2656 481.2656 moveto +P$1j +28849.125 475.8906 moveto +P$1g +28851.4063 476.2656 moveto +P$15 +28865.6719 479.2031 moveto +P$1l +28865.6719 478.2969 moveto +P$1m +28874.9375 479.4531 moveto +P$1y +28876.0938 475.8906 moveto +P$2n +28887.3125 478.6406 moveto +P$1o +28891.1719 484.0313 moveto +P$1e +28894.8438 481.7344 moveto +P$1f +28901.1094 481.7188 moveto +P$1i +28903.2656 481.2656 moveto +P$1j +28910.8594 478.7031 moveto +P$1h +28918.75 481.4688 moveto +P$1r +28917.6719 481.1406 moveto +P$1s +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28768 496 moveto +154 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28768 504 moveto +154 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +203 48 28532.8 468 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +202 47 28533.3 468.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +201 46 28533.8 469 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +200 45 28534.3 469.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +199 44 28534.8 470 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +198 43 28535.3 470.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +197 42 28535.8 471 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +196 41 28536.3 471.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +195 40 28536.8 472 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +203 48 28528.8 464 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +203 48 28528.8 464 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +28543.8 480 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28543.8 480 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28546.7688 485.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +28560.1594 477.2344 moveto +P$27 +28558.9719 476.2656 moveto +P$28 +28572.55 481.4688 moveto +P$1r +28571.4719 481.1406 moveto +P$1s +28578.7375 479.4531 moveto +P$1y +28584.1125 478.6406 moveto +P$1o +28589.4719 479.2031 moveto +P$1l +28589.4719 478.2969 moveto +P$1m +28600.3938 481.0469 moveto +P$1d +28605.9094 481.7188 moveto +P$1i +28608.0656 481.2656 moveto +P$1j +28610.925 475.8906 moveto +P$1g +28613.2063 476.2656 moveto +P$15 +28627.4719 479.2031 moveto +P$1l +28627.4719 478.2969 moveto +P$1m +28636.7375 479.4531 moveto +P$1y +28637.8938 475.8906 moveto +P$2n +28649.1125 478.6406 moveto +P$1o +28652.9719 484.0313 moveto +P$1e +28656.6438 481.7344 moveto +P$1f +28662.9094 481.7188 moveto +P$1i +28665.0656 481.2656 moveto +P$1j +28672.6594 478.7031 moveto +P$1h +28680.55 481.4688 moveto +P$1r +28679.4719 481.1406 moveto +P$1s +28689.5344 476.9375 moveto +P$14 +28694.7375 479.4531 moveto +P$1y +28701.55 481.4688 moveto +P$1r +28700.4719 481.1406 moveto +P$1s +28706.9094 481.7188 moveto +P$1i +28709.0656 481.2656 moveto +P$1j +28713.0031 476.5938 moveto +P$1k +28719.4719 479.2031 moveto +P$1l +28719.4719 478.2969 moveto +P$1m +28728.7375 479.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28529.8 496 moveto +201 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28529.8 504 moveto +201 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +119 48 27912.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +118 47 27913.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +117 46 27913.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +116 45 27914.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +115 44 27914.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +114 43 27915.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +113 42 27915.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +112 41 27916.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +111 40 27916.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +119 48 27908.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +119 48 27908.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27923.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27923.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27926.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27940.1594 353.2344 moveto +P$27 +27938.9719 352.2656 moveto +P$28 +27949.4719 355.2031 moveto +P$1l +27949.4719 354.2969 moveto +P$1m +27958.7375 355.4531 moveto +P$1y +27961.0031 352.5938 moveto +P$1k +27967.9094 357.7188 moveto +P$1i +27970.0656 357.2656 moveto +P$1j +27972.925 351.8906 moveto +P$1g +27978.9094 353.4375 moveto +P$16 +27978.2375 352.2656 moveto +P$17 +27987.7375 355.4531 moveto +P$1y +27993.6594 354.7031 moveto +P$1h +28001.3938 357.0469 moveto +P$2d +28003.925 354.4531 moveto +P$1b +28003.925 351.8906 moveto +P$1c +28006.1594 354.4531 moveto +P$2f +28018.55 357.4688 moveto +P$1r +28017.4719 357.1406 moveto +P$1s +28024.7375 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27909.8 372 moveto +117 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27909.8 380 moveto +117 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +119 48 27758.8 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +118 47 27759.3 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +117 46 27759.8 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +116 45 27760.3 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +115 44 27760.8 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +114 43 27761.3 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +113 42 27761.8 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +112 41 27762.3 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +111 40 27762.8 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +119 48 27754.8 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +119 48 27754.8 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27769.8 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27769.8 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27772.7688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27786.1594 353.2344 moveto +P$27 +27784.9719 352.2656 moveto +P$28 +27795.4719 355.2031 moveto +P$1l +27795.4719 354.2969 moveto +P$1m +27804.7375 355.4531 moveto +P$1y +27807.0031 352.5938 moveto +P$1k +27813.9094 357.7188 moveto +P$1i +27816.0656 357.2656 moveto +P$1j +27818.925 351.8906 moveto +P$1g +27827.2219 352.5469 moveto +P$1z +27829.925 354.4531 moveto +P$1b +27829.925 351.8906 moveto +P$1c +27834.0031 352.5938 moveto +P$1k +27843.55 357.4688 moveto +P$1r +27842.4719 357.1406 moveto +P$1s +27845.9719 352.2656 moveto +P$2m +27858.9094 357.7188 moveto +P$1i +27861.0656 357.2656 moveto +P$1j +27864.9719 360.0313 moveto +P$1e +27868.6438 357.7344 moveto +P$1f +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27755.8 372 moveto +117 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27755.8 380 moveto +117 0 rlineto +closepath stroke +0.7843 0.7843 0.7843 setrgbcolor +148 48 27575 344 1 roundrect +closepath eofill +0.7098 0.7098 0.7098 setrgbcolor +147 47 27575.5 344.5 1 roundrect +closepath eofill +0.6353 0.6353 0.6353 setrgbcolor +146 46 27576 345 1 roundrect +closepath eofill +0.5608 0.5608 0.5608 setrgbcolor +145 45 27576.5 345.5 1 roundrect +closepath eofill +0.4902 0.4902 0.4902 setrgbcolor +144 44 27577 346 1 roundrect +closepath eofill +0.4157 0.4157 0.4157 setrgbcolor +143 43 27577.5 346.5 1 roundrect +closepath eofill +0.3412 0.3412 0.3412 setrgbcolor +142 42 27578 347 1 roundrect +closepath eofill +0.2667 0.2667 0.2667 setrgbcolor +141 41 27578.5 347.5 1 roundrect +closepath eofill +0.1961 0.1961 0.1961 setrgbcolor +140 40 27579 348 1 roundrect +closepath eofill +0.9961 0.9961 0.8078 setrgbcolor +148 48 27571 340 simplerect +closepath eofill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +148 48 27571 340 simplerect +closepath stroke +0.6784 0.8196 0.698 setrgbcolor +newpath +27586 356 11 0 360 arc +closepath eofill +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27586 356 11 0 360 arc +closepath stroke +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27588.9688 361.6406 moveto +P$13 +fill +0 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +newpath +27600.4063 352.2656 moveto +P$15 +27614.6719 355.2031 moveto +P$1l +27614.6719 354.2969 moveto +P$1m +27623.9375 355.4531 moveto +P$1y +27625.0938 351.8906 moveto +P$2n +27636.3125 354.6406 moveto +P$1o +27640.1719 360.0313 moveto +P$1e +27643.8438 357.7344 moveto +P$1f +27650.1094 357.7188 moveto +P$1i +27652.2656 357.2656 moveto +P$1j +27659.8594 354.7031 moveto +P$1h +27667.75 357.4688 moveto +P$1r +27666.6719 357.1406 moveto +P$1s +27676.7344 352.9375 moveto +P$14 +27681.9375 355.4531 moveto +P$1y +27688.75 357.4688 moveto +P$1r +27687.6719 357.1406 moveto +P$1s +27694.1094 357.7188 moveto +P$1i +27696.2656 357.2656 moveto +P$1j +27700.2031 352.5938 moveto +P$1k +27706.6719 355.2031 moveto +P$1l +27706.6719 354.2969 moveto +P$1m +27715.9375 355.4531 moveto +P$1y +fill +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27572 372 moveto +146 0 rlineto +closepath stroke +1.5 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27572 380 moveto +146 0 rlineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2106.18 388.206 moveto -2093.84 425.839 2064.02 499.628 2011 536 curveto -1944.12 581.879 1691.66 602.987 1603.56 609.066 curveto +25721.6 275.452 moveto +25713.2 280.591 25704.2 285.124 25695 288 curveto +25655.8 300.322 24993.2 280.745 24955 296 curveto +24932.6 304.933 24913.1 324.351 24900 339.994 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1742.73 200.858 moveto -1753.25 190.087 1765.69 179.36 1779 172 curveto -1785.98 168.14 1788.57 168.89 1796.5 168 curveto -1838.24 163.29 2510.76 163.29 2552.5 168 curveto -2560.43 168.89 2563.33 167.62 2570 172 curveto -2586.42 182.773 2599.35 200.899 2607.94 215.729 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1747.87 205.613 moveto --18.6 10.151 rlineto -8.21 -19.534 rlineto -10.39 9.383 rlineto -1747.87 205.613 lineto +25717.7 269.636 moveto +20.4 -5.619 rlineto +-12.5 17.133 rlineto +-7.9 -11.514 rlineto +25717.7 269.636 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.7 273.859 moveto -1619.24 279.672 1631.7 284.863 1644 288 curveto -1692.24 300.303 2493.29 278.788 2540 296 curveto -2563.97 304.832 2585.8 324.26 2600.58 339.933 curveto +13076.9 276.014 moveto +13084.2 280.736 13092.1 284.984 13100 288 curveto +13133.4 300.683 13148 280.042 13180 296 curveto +13257.1 334.463 13317.1 421.853 13342.6 463.751 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.09 279.861 moveto --14.14 -15.777 rlineto -20.89 3.513 rlineto --6.75 12.264 rlineto -1604.09 279.861 lineto +13072.5 281.486 moveto +-12.2 -17.367 rlineto +20.4 6.005 rlineto +-8.2 11.362 rlineto +13072.5 281.486 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.71 273.836 moveto -1619.24 279.65 1631.71 284.848 1644 288 curveto -1719.67 307.399 2271.1 277.506 2347 296 curveto -2382.54 304.661 2419.43 324.217 2445.31 339.978 curveto +13327.6 512.234 moveto +13301.1 533.943 13261.7 566.172 13235.3 587.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.1 279.839 moveto --14.15 -15.777 rlineto -20.9 3.512 rlineto --6.75 12.265 rlineto -1604.1 279.839 lineto +25731.7 200.864 moveto +25721 190.09 25708.4 179.36 25695 172 curveto +25688 168.17 25685.4 168.89 25677.5 168 curveto +25632 162.87 12538.3 167.86 12492.5 168 curveto +7389.88 183.37 1062.22 235.633 569.671 239.743 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25737 196.301 moveto +8.4 19.469 rlineto +-18.7 -10.003 rlineto +10.3 -9.466 rlineto +25737 196.301 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2630.84 407.668 moveto -2635.64 426.55 2641.09 448.015 2645.12 463.852 curveto +12966.7 252.467 moveto +12893.8 264.097 12774.6 281.305 12671 288 curveto +12649.9 289.365 501.743 288.383 482 296 curveto +459.202 304.796 439.069 324.228 425.581 339.911 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2624.04 409.342 moveto -1.86 -21.108 rlineto -11.71 17.661 rlineto --13.57 3.447 rlineto -2624.04 409.342 lineto +12966 245.484 moveto +20.9 3.718 rlineto +-18.6 10.103 rlineto +-2.3 -13.821 rlineto +12966 245.484 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2580.88 402.001 moveto -2559.59 422.13 2533.92 446.406 2515.48 463.852 curveto +12966.7 252.467 moveto +12893.8 264.096 12774.6 281.304 12671 288 curveto +12508.6 298.499 1114.22 282.713 952 296 curveto +818.216 306.958 662.179 337.657 587.785 353.41 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2576.09 396.891 moveto -19.34 -8.657 rlineto --9.72 18.829 rlineto --9.62 -10.172 rlineto -2576.09 396.891 lineto +12966 245.483 moveto +20.9 3.719 rlineto +-18.6 10.102 rlineto +-2.3 -13.821 rlineto +12966 245.483 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2620 264.234 moveto -2620 285.943 2620 318.172 2620 339.852 curveto +442.423 403.178 moveto +460.358 423.07 481.704 446.745 497.129 463.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2704.93 512.087 moveto -2729.74 521.504 2759.85 531.278 2788 536 curveto -2843.76 545.355 6802.62 539.686 6859 544 curveto -7005.71 555.226 7177.57 586.695 7256.43 602.175 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2706.33 512.067 moveto -2730.9 521.235 2760.45 530.819 2788 536 curveto -2872.81 551.946 2898.01 524.167 2982 544 curveto -3020.78 553.158 3061.88 572.445 3091.06 587.984 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2482.09 388.234 moveto -2484.05 409.943 2486.96 442.172 2488.91 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2443.93 388.106 moveto -2433.59 396.745 2423.61 407.533 2418 420 curveto -2396.86 467.02 2381.8 499.287 2418 536 curveto -2429 547.157 2966.7 540.606 2982 544 curveto -3021.18 552.695 3062.57 572.247 3091.76 587.998 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2518.59 512.099 moveto -2531.53 521.457 2547.66 531.179 2564 536 curveto -2592.61 544.442 6829.26 541.726 6859 544 curveto -7005.71 555.218 7177.57 586.691 7256.43 602.173 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2695.78 390.897 moveto -2724.33 399.402 2757.31 407.758 2788 412 curveto -2900.02 427.486 6747.2 403.021 6859 420 curveto -6914.35 428.407 6975.07 448.102 7018.16 463.975 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2693.38 397.482 moveto --17.04 -12.597 rlineto -21.18 -0.777 rlineto --4.14 13.374 rlineto -2693.38 397.482 lineto +437.143 407.776 moveto +-8.194 -19.542 rlineto +18.592 10.167 rlineto +-10.398 9.375 rlineto +437.143 407.776 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7118.4 512.091 moveto -7158.22 533.782 7217.5 566.069 7257.4 587.796 curveto +390.885 406.761 moveto +383.057 425.86 374.082 447.761 367.487 463.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1753.08 275.725 moveto -1761.24 280.773 1770.05 285.203 1779 288 curveto -1827.65 303.206 9072.15 275.93 9119 296 curveto -9139.85 304.93 9157.15 324.349 9168.48 339.992 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1748.83 281.29 moveto --12.37 -17.207 rlineto -20.4 5.74 rlineto --8.03 11.467 rlineto -1748.83 281.29 lineto +384.416 404.086 moveto +14.062 -15.852 rlineto +-1.108 21.161 rlineto +-12.954 -5.309 rlineto +384.416 404.086 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.68 273.932 moveto -1619.22 279.741 1631.69 284.912 1644 288 curveto -1693.42 300.399 8933.47 277.649 8981 296 curveto -9003.8 304.801 9023.93 324.232 9037.42 339.914 curveto +514.052 264.234 moveto +490.742 285.943 456.135 318.172 432.856 339.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.934 moveto --14.14 -15.78 rlineto -20.89 3.516 rlineto --6.75 12.264 rlineto -1604.07 279.934 lineto +578.566 512.024 moveto +602.695 520.524 630.891 529.627 657 536 curveto +818.016 575.306 1014.26 598.076 1100.18 606.825 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +572.753 512.033 moveto +597.931 521.441 628.485 531.221 657 536 curveto +693.136 542.057 1941.05 532.988 1976 544 curveto +2003.52 552.673 2030.15 572.118 2048.53 587.837 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +518.789 388.211 moveto +507.909 397.002 494.575 406.264 481 412 curveto +460.27 420.76 451.258 410.199 431 420 curveto +409.785 430.264 390.37 448.731 376.904 463.681 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +587.523 370.06 moveto +671.574 379.656 862.137 400.561 1023 412 curveto +1043.08 413.428 1186.73 409.664 1204 420 curveto +1255.48 450.799 1221.03 506.049 1273 536 curveto +1289.92 545.751 1957.39 538.081 1976 544 curveto +2003.5 552.746 2030.13 572.183 2048.51 587.881 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +386.887 512.053 moveto +399.682 521.044 415.36 530.495 431 536 curveto +555.746 579.905 964.672 602.598 1100.04 609.042 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +335.31 396.323 moveto +319.223 403.729 302.391 411.853 287 420 curveto +261.506 433.495 233.774 450.403 212.533 463.856 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +332.612 389.861 moveto +21.108 -1.86 rlineto +-15.341 14.617 rlineto +-5.767 -12.757 rlineto +332.612 389.861 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.928 moveto -1619.22 279.736 1631.69 284.908 1644 288 curveto -1677.58 296.435 6599.65 279.331 6630 296 curveto -6683.6 325.44 6650.64 382.135 6704 412 curveto -6726.21 424.428 7139.44 408.219 7162 420 curveto -7197.63 438.607 7259.87 541.182 7286.87 587.858 curveto +221.903 512.006 moveto +241.416 520.988 264.841 530.447 287 536 curveto +443.826 575.3 948.334 601.769 1100.29 609.001 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.929 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.929 lineto +25721.6 275.524 moveto +25713.2 280.656 25704.2 285.168 25695 288 curveto +25652.2 301.228 19282.1 278.188 19241 296 curveto +19220.5 304.884 19203.6 324.089 19192.4 339.669 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25717.7 269.708 moveto +20.4 -5.621 rlineto +-12.5 17.135 rlineto +-7.9 -11.514 rlineto +25717.7 269.708 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7343.76 603.06 moveto -7416.53 589.971 7567.09 563.387 7695 544 curveto -9249.17 308.444 8943.49 556.789 8683 296 curveto -8674.36 287.354 1655.85 290.974 1644 288 curveto -1625.02 283.237 1605.65 273.521 1589.93 264.153 curveto +13075.4 275.912 moveto +13083.1 280.877 13091.5 285.231 13100 288 curveto +13138.7 300.564 18924.5 282.852 18963 296 curveto +18988.4 304.68 19012.2 324.124 19028.5 339.841 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.929 moveto -1619.22 279.737 1631.69 284.909 1644 288 curveto -1662.25 292.582 7046.71 286.581 7063 296 curveto -7114.54 325.802 7078.64 381.882 7130 412 curveto -7143.95 420.179 7700.65 408.489 7712 420 curveto -7748.2 456.705 7739.62 492.47 7712 536 curveto -7707.53 543.05 7701.3 538.523 7695 544 curveto -7648.47 584.424 7672.64 629.643 7619 660 curveto -7599.26 671.173 7436.52 660.825 7415 668 curveto -7387.82 677.063 7361.36 696.252 7342.96 711.78 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1604.07 279.93 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.93 lineto +13071.2 281.521 moveto +-12 -17.455 rlineto +20.3 6.154 rlineto +-8.3 11.301 rlineto +13071.2 281.521 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.928 moveto -1619.22 279.736 1631.69 284.909 1644 288 curveto -1678.11 296.566 6676.43 280.506 6708 296 curveto -6766.58 324.75 6739.65 382.787 6798 412 curveto -6820.86 423.442 7233.67 412.18 7258 420 curveto -7285.47 428.829 7312.11 448.258 7330.5 463.931 curveto +13076.2 276.052 moveto +13083.7 280.862 13091.8 285.129 13100 288 curveto +13135.7 300.489 13234.4 283.131 13270 296 curveto +13391.5 339.961 13525.3 444.618 13434 536 curveto +13419 550.989 1248 536.994 1228 544 curveto +1203.18 552.696 1180.22 572.138 1164.6 587.851 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.929 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.929 lineto +13072 281.639 moveto +-12.1 -17.398 rlineto +20.3 6.057 rlineto +-8.2 11.341 rlineto +13072 281.639 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7537.01 713.592 moveto -7578.87 697.547 7639.65 676.89 7695 668 curveto -7717.74 664.348 8502.66 668.664 8524 660 curveto -8682.53 595.629 8959.14 471.338 8784 296 curveto -8775.24 287.23 1656.02 291.017 1644 288 curveto -1625.02 283.237 1605.65 273.521 1589.93 264.153 curveto +1164.59 587.848 moveto +1180.21 572.135 1203.18 552.692 1228 544 curveto +1248.34 536.879 26035.8 551.239 26051 536 curveto +26087.4 499.539 26087.4 456.496 26051 420 curveto +26033.4 402.391 22492.2 420.888 22469 412 curveto +22396.7 384.331 22411.3 323.619 22339 296 curveto +22309 284.558 13130.5 297.892 13100 288 curveto +13085 283.148 13070.6 273.422 13059.2 264.07 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7303.43 636.234 moveto -7306.63 657.943 7311.39 690.172 7314.58 711.852 curveto +13075.4 275.903 moveto +13083.1 280.869 13091.5 285.225 13100 288 curveto +13119.7 294.401 16063.1 285.627 16081 296 curveto +16132.5 325.833 16096.5 382.187 16148 412 curveto +16160.6 419.316 20345.7 409.659 20356 420 curveto +20392.4 456.49 20385.1 493.435 20356 536 curveto +20270.4 661.245 20187.1 631.93 20038 660 curveto +20005.6 666.095 1097.44 658.189 1066 668 curveto +1038.45 676.596 1011.82 696.048 993.459 711.79 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7343.56 629.932 moveto -7365.85 639.545 7392.88 652.711 7415 668 curveto -7433.27 680.626 7451.31 698.045 7464.5 711.957 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -7344.53 512.234 moveto -7334.74 533.943 7320.21 566.172 7310.44 587.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4195.32 649.556 moveto -4200.81 653.757 4206.76 657.444 4213 660 curveto -4262.79 680.398 4405.97 645.834 4455 668 curveto -4475.37 677.209 4492.3 696.383 4503.46 711.869 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4190.52 654.653 moveto --10.11 -18.622 rlineto -19.52 8.253 rlineto --9.41 10.369 rlineto -4190.52 654.653 lineto +13071.2 281.512 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.512 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4169.75 655.971 moveto -4173.14 674.779 4176.99 696.1 4179.83 711.852 curveto +12966.7 252.467 moveto +12893.8 264.095 12774.6 281.304 12671 288 curveto +12651 289.293 1138.59 284.738 1122 296 curveto +1065.6 334.286 1051.05 421.763 1047.3 463.717 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4162.85 657.159 moveto -3.34 -20.925 rlineto -10.44 18.441 rlineto --13.78 2.484 rlineto -4162.85 657.159 lineto +12966 245.483 moveto +20.9 3.718 rlineto +-18.6 10.103 rlineto +-2.3 -13.821 rlineto +12966 245.483 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4126.95 651.178 moveto -4108.69 671.07 4086.96 694.745 4071.25 711.852 curveto +1158.98 711.809 moveto +1176.29 696.077 1201.51 676.628 1228 668 curveto +1249.65 660.95 27434.6 673.403 27453 660 curveto +27540.4 596.332 27569.4 496.528 27493 420 curveto +27481.1 408.043 22642 419.737 22627 412 curveto +22570.6 382.969 22600.4 325.009 22544 296 curveto +22514.8 280.995 13131.2 298.111 13100 288 curveto +13085 283.148 13070.6 273.422 13059.2 264.07 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4121.99 646.234 moveto -18.68 -10 rlineto --8.37 19.467 rlineto --10.31 -9.467 rlineto -4121.99 646.234 lineto +1110.67 636.234 moveto +1079.53 657.943 1033.3 690.172 1002.204 711.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1142.48 636.234 moveto +1141.05 657.943 1138.94 690.172 1137.52 711.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1064.66 512.234 moveto +1082.1 533.943 1107.99 566.172 1125.41 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3555.93 649.829 moveto +3561.26 653.879 3567 657.451 3573 660 curveto +3600.86 671.836 3681.63 655.065 3709 668 curveto +3728.92 677.412 3745.48 696.356 3756.47 711.705 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3551.15 654.944 moveto +-10.2 -18.572 rlineto +19.55 8.157 rlineto +-9.35 10.415 rlineto +3551.15 654.944 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.72 273.805 moveto -1619.25 279.622 1631.71 284.828 1644 288 curveto -1702.86 303.19 2131.98 281.448 2191 296 curveto -2301.77 323.313 2309.16 384.96 2420 412 curveto -2464.58 422.876 3203.38 402.997 3246 420 curveto -3268.36 428.92 3287.93 448.34 3301 463.986 curveto +3487.58 649.637 moveto +3482.09 653.766 3476.17 657.412 3470 660 curveto +3442.29 671.622 3362.55 655.984 3335 668 curveto +3313.41 677.417 3294.5 696.572 3281.8 711.998 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.11 279.809 moveto --14.15 -15.776 rlineto -20.9 3.51 rlineto --6.75 12.266 rlineto -1604.11 279.809 lineto +3482.97 644.37 moveto +19.63 -7.997 rlineto +-10.36 18.488 rlineto +-9.27 -10.491 rlineto +3482.97 644.37 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.928 moveto -1619.22 279.737 1631.69 284.909 1644 288 curveto -1679.06 296.806 6817.55 280.072 6850 296 curveto -6908.58 324.749 6881.58 382.938 6940 412 curveto -6956.24 420.079 7580.25 407.095 7593 420 curveto -7629.23 456.678 7629.41 499.503 7593 536 curveto -7584.46 544.559 4122.83 541.509 4111 544 curveto -4070.85 552.454 4028.34 572.032 3998.35 587.854 curveto +3562.1 649.872 moveto +3568.47 655.878 3574.95 662.073 3581 668 curveto +3595.58 682.295 3611.56 698.749 3624.02 711.774 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.929 moveto --14.14 -15.779 rlineto -20.9 3.516 rlineto --6.76 12.263 rlineto -1604.07 279.929 lineto +3557.09 654.77 moveto +-9.85 -18.761 rlineto +19.4 8.524 rlineto +-9.55 10.237 rlineto +3557.09 654.77 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.7 273.874 moveto -1619.23 279.686 1631.7 284.873 1644 288 curveto -1673.43 295.48 2710.21 281.708 2737 296 curveto -2792.03 325.362 2774.34 365.579 2816 412 curveto -2833.16 431.122 2855.16 449.872 2872.87 463.842 curveto +12966.7 252.466 moveto +12893.8 264.095 12774.6 281.303 12671 288 curveto +12661.1 288.641 1233.02 288.973 1226 296 curveto +1189.56 332.468 1189.67 375.42 1226 412 curveto +1237.45 423.53 2380.9 414 2396 420 curveto +2418.37 428.889 2437.94 448.311 2451.01 463.967 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.09 279.876 moveto --14.15 -15.778 rlineto -20.9 3.514 rlineto --6.75 12.264 rlineto -1604.09 279.876 lineto +12966 245.483 moveto +20.9 3.718 rlineto +-18.6 10.103 rlineto +-2.3 -13.821 rlineto +12966 245.483 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.928 moveto -1619.22 279.737 1631.69 284.909 1644 288 curveto -1678.59 296.686 6746.99 280.289 6779 296 curveto -6837.58 324.75 6810.57 382.954 6869 412 curveto -6886.01 420.458 7539.64 406.486 7553 420 curveto -7589.24 456.668 7589.42 499.511 7553 536 curveto -7542.33 546.688 3218.07 538.508 3204 544 curveto -3181.41 552.821 3161.55 572.25 3148.28 587.926 curveto +13075.4 275.902 moveto +13083.1 280.868 13091.5 285.224 13100 288 curveto +13118.7 294.097 15921.9 286.12 15939 296 curveto +15990.5 325.837 15954.5 382.187 16006 412 curveto +16018.7 419.37 20234.6 409.582 20245 420 curveto +20281.4 456.49 20281.4 499.536 20245 536 curveto +20234.4 546.56 3059.84 542.365 3045 544 curveto +2960.66 553.293 2865.37 576.762 2805.02 593.291 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.929 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.929 lineto +13071.2 281.511 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.511 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.929 moveto -1619.22 279.737 1631.69 284.909 1644 288 curveto -1680.02 297.045 6958.66 279.638 6992 296 curveto -7050.58 324.748 7023.59 382.9 7082 412 curveto -7096.7 419.322 7661.47 408.312 7673 420 curveto -7709.21 456.701 7705.78 496.207 7673 536 curveto -7661.2 550.33 7647.5 533.782 7632 544 curveto -7579.92 578.33 7607.78 630.175 7553 660 curveto -7536.84 668.795 7240.39 667.517 7222 668 curveto -6283.57 692.667 5135.27 726.85 4904.51 733.755 curveto +12966.7 252.466 moveto +12893.8 264.095 12774.6 281.303 12671 288 curveto +12661.1 288.643 1198.04 288.951 1191 296 curveto +1154.56 332.468 1155.02 375.073 1191 412 curveto +1202.91 424.22 1481.56 415.429 1498 420 curveto +1530 428.899 1562.55 448.321 1585.33 463.974 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.93 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.93 lineto +12966 245.483 moveto +20.9 3.718 rlineto +-18.6 10.103 rlineto +-2.3 -13.821 rlineto +12966 245.483 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.93 moveto -1619.22 279.738 1631.69 284.91 1644 288 curveto -1683.37 297.883 7452.56 278.12 7489 296 curveto -7547.58 324.744 7520.52 383.056 7579 412 curveto -7603.27 424.014 8526.99 418.029 8554 420 curveto -9330.39 476.645 9512.67 602.533 10289 660 curveto -10299.7 660.795 11056.4 660.349 11064 668 curveto -11100.3 704.643 11100.4 747.521 11064 784 curveto -11048.7 799.35 4836.18 784.036 4816 792 curveto -4785.73 803.945 4759.68 831.554 4743.71 851.659 curveto +13075.4 275.902 moveto +13083.1 280.867 13091.5 285.224 13100 288 curveto +13118.4 293.969 15862.7 285.717 15879 296 curveto +15927.4 326.505 15886.5 381.518 15935 412 curveto +15959.1 427.171 20017.9 399.833 20038 420 curveto +20074.4 456.491 20074.4 499.537 20038 536 curveto +20027 546.985 2160.47 538.362 2146 544 curveto +2123.4 552.805 2103.55 572.236 2090.28 587.917 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.931 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.931 lineto +13071.2 281.511 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.511 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.908 moveto -1619.22 279.718 1631.69 284.896 1644 288 curveto -1702.77 302.826 3767.92 278.657 3826 296 curveto -3854.82 304.607 3883.14 324.058 3902.77 339.796 curveto +13075.4 275.903 moveto +13083.1 280.869 13091.5 285.225 13100 288 curveto +13140.3 301.106 16114 277.304 16152 296 curveto +16210.6 324.781 16183.4 383.24 16242 412 curveto +16255.1 418.452 20447.7 409.639 20458 420 curveto +20533.4 495.496 20533.4 584.558 20458 660 curveto +20447.6 670.44 3467.45 661.919 3454 668 curveto +3434.23 676.94 3418.44 696.139 3408.19 711.704 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.08 279.91 moveto --14.15 -15.779 rlineto -20.9 3.515 rlineto --6.75 12.264 rlineto -1604.08 279.91 lineto +13071.2 281.512 moveto +-12 -17.454 rlineto +20.3 6.153 rlineto +-8.3 11.301 rlineto +13071.2 281.512 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.93 moveto -1619.22 279.738 1631.69 284.91 1644 288 curveto -1683.85 298.003 7523.12 277.903 7560 296 curveto -7618.58 324.744 7591.48 383.123 7650 412 curveto -7666.83 420.304 8982.28 418.655 9001 420 curveto -9776.57 475.756 9958.89 598.158 10734 660 curveto -10744.2 660.818 11096.8 660.653 11104 668 curveto -11140.1 704.847 11140.4 747.502 11104 784 curveto -11095.6 792.38 7706.84 791.812 7695 792 curveto -6549.65 810.16 5144 864.187 4904.48 873.595 curveto +13075.4 275.904 moveto +13083.1 280.869 13091.5 285.225 13100 288 curveto +13120.6 294.705 16204.2 285.134 16223 296 curveto +16274.5 325.83 16238.5 382.187 16290 412 curveto +16302.7 419.343 20502.6 409.622 20513 420 curveto +20588.4 495.496 20587.8 583.934 20513 660 curveto +20371.6 803.814 13455.7 782.196 13254 784 curveto +13236.9 784.153 3435.88 785.736 3420 792 curveto +3389.73 803.938 3363.67 831.549 3347.71 851.656 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.931 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.931 lineto +13071.2 281.513 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.513 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.93 moveto -1619.22 279.739 1631.69 284.91 1644 288 curveto -1664.4 293.121 7683.33 286.317 7702 296 curveto -7758.05 325.065 7727.99 382.864 7784 412 curveto -7796.76 418.637 9840.66 418.921 9855 420 curveto -10231.8 448.357 10325.9 467.961 10696 544 curveto -10893.3 584.529 10937 618.262 11134 660 curveto -11145 662.332 11176.7 659.438 11184 668 curveto -11269.7 768.541 11182.5 881.502 11064 940 curveto -11052.6 945.643 7405.75 947.819 7393 948 curveto -6402.14 962.079 5195.49 1002.643 4905.08 1012.715 curveto +12966.7 252.464 moveto +12893.8 264.091 12774.6 281.298 12671 288 curveto +12636.5 290.229 2760.1 286.168 2727 296 curveto +2698.17 304.565 2669.85 324.02 2650.23 339.771 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.931 moveto --14.14 -15.779 rlineto -20.9 3.516 rlineto --6.76 12.263 rlineto -1604.07 279.931 lineto +12966 245.481 moveto +20.9 3.719 rlineto +-18.6 10.102 rlineto +-2.3 -13.821 rlineto +12966 245.481 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.902 moveto -1619.23 279.712 1631.7 284.892 1644 288 curveto -1693.53 300.512 3434.63 279.565 3483 296 curveto -3508.64 304.71 3532.73 324.151 3549.2 339.859 curveto +13075.4 275.904 moveto +13083.1 280.87 13091.5 285.226 13100 288 curveto +13142.2 301.713 16254.2 276.436 16294 296 curveto +16352.6 324.777 16325.4 383.24 16384 412 curveto +16397.1 418.452 20589.7 409.639 20600 420 curveto +20714.3 534.503 20714.4 669.579 20600 784 curveto +20589.6 794.366 3728.85 784.954 3716 792 curveto +3692.91 804.657 3678.42 832.122 3670.54 851.999 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.08 279.903 moveto --14.14 -15.778 rlineto -20.89 3.515 rlineto --6.75 12.263 rlineto -1604.08 279.903 lineto +13071.2 281.513 moveto +-12 -17.455 rlineto +20.3 6.154 rlineto +-8.3 11.301 rlineto +13071.2 281.513 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.7 273.878 moveto -1619.23 279.69 1631.7 284.876 1644 288 curveto -1675.2 295.925 2774.82 280.426 2803 296 curveto -2856.52 325.582 2824.22 381.116 2877 412 curveto -2904.47 428.074 2989.53 410.789 3020 420 curveto -3050.76 429.302 3081.97 448.467 3103.94 463.927 curveto +13075.4 275.905 moveto +13083.1 280.87 13091.5 285.226 13100 288 curveto +13121.6 295.008 16345.4 284.641 16365 296 curveto +16416.5 325.827 16380.5 382.187 16432 412 curveto +16457.4 426.716 20640 403.061 20664 420 curveto +20756.6 485.31 20657.4 594.714 20750 660 curveto +20766.5 671.598 26532.8 653.757 26547 668 curveto +26632.4 753.54 26632.5 854.503 26547 940 curveto +26547 940 4569 948 4569 948 curveto +4253.18 959.719 3876.7 994.14 3728 1008.545 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.09 279.88 moveto --14.15 -15.778 rlineto -20.9 3.514 rlineto --6.75 12.264 rlineto -1604.09 279.88 lineto +13071.2 281.514 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.514 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.928 moveto -1619.22 279.737 1631.69 284.909 1644 288 curveto -1679.54 296.925 6888.1 279.855 6921 296 curveto -6979.58 324.748 6952.59 382.92 7011 412 curveto -7026.47 419.701 7620.86 407.703 7633 420 curveto -7669.22 456.689 7669.41 499.499 7633 536 curveto -7625.19 543.83 4458.77 541.477 4448 544 curveto -4411.74 552.496 4374.01 572.069 4347.52 587.879 curveto +12966.7 252.465 moveto +12893.8 264.092 12774.6 281.299 12671 288 curveto +12635.1 290.324 2337.07 284.385 2303 296 curveto +2277.56 304.673 2253.75 324.117 2237.49 339.836 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.93 moveto --14.14 -15.78 rlineto -20.9 3.516 rlineto --6.76 12.264 rlineto -1604.07 279.93 lineto +12966 245.482 moveto +20.9 3.718 rlineto +-18.6 10.102 rlineto +-2.3 -13.82 rlineto +12966 245.482 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1753.09 275.712 moveto -1761.25 280.761 1770.05 285.195 1779 288 curveto -1814.89 299.254 4451.63 283.209 4487 296 curveto -4511.2 304.751 4533.31 324.188 4548.3 339.884 curveto +12966.7 252.466 moveto +12893.8 264.095 12774.6 281.303 12671 288 curveto +12661 288.645 1163.07 288.93 1156 296 curveto +1119.56 332.468 1120.9 374.234 1156 412 curveto +1164.27 420.896 1253.36 416.534 1265 420 curveto +1297.1 429.562 1330.15 448.598 1353.58 463.943 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1748.83 281.277 moveto --12.37 -17.207 rlineto -20.4 5.739 rlineto --8.03 11.468 rlineto -1748.83 281.277 lineto +12966 245.483 moveto +20.9 3.718 rlineto +-18.6 10.103 rlineto +-2.3 -13.821 rlineto +12966 245.483 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1753.08 275.726 moveto -1761.24 280.773 1770.05 285.203 1779 288 curveto -1791.83 292.01 9513.5 286.488 9523 296 curveto -9666.52 439.672 9438.67 545.864 8421 660 curveto -8393.64 663.069 4481.93 658.726 4456 668 curveto -4431.59 676.731 4409.2 696.169 4394 711.872 curveto +13075.4 275.902 moveto +13083.1 280.868 13091.5 285.225 13100 288 curveto +13138.4 300.499 15973.7 278.171 16010 296 curveto +16068.6 324.785 16041.4 383.24 16100 412 curveto +16113.1 418.452 20305.7 409.639 20316 420 curveto +20352.4 456.49 20352.4 499.536 20316 536 curveto +20305.6 546.443 3321.48 541.136 3307 544 curveto +3264.38 552.428 3218.89 572.121 3186.83 587.988 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1748.83 281.291 moveto --12.37 -17.207 rlineto -20.4 5.739 rlineto --8.03 11.468 rlineto -1748.83 281.291 lineto +13071.2 281.512 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.512 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1753.09 275.707 moveto -1761.25 280.757 1770.06 285.192 1779 288 curveto -1808.84 297.368 4002.63 282.827 4031 296 curveto -4050.39 305.004 4065.62 324.198 4075.44 339.744 curveto +25721.6 275.531 moveto +25713.2 280.662 25704.2 285.172 25695 288 curveto +25657.3 299.613 3036.03 282.534 2999 296 curveto +2974.99 304.73 2953.16 324.168 2938.39 339.871 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1748.83 281.272 moveto --12.36 -17.206 rlineto -20.39 5.739 rlineto --8.03 11.467 rlineto -1748.83 281.272 lineto +25717.7 269.715 moveto +20.4 -5.622 rlineto +-12.5 17.135 rlineto +-7.9 -11.513 rlineto +25717.7 269.715 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11138.7 393.634 moveto -11110.9 401.159 11079.9 408.224 11051 412 curveto -11009 417.486 4985.41 407.154 4945 420 curveto -4917.88 428.621 4891.82 448.07 4873.87 463.805 curveto +25807 275.77 moveto +25814.9 280.671 25823.4 285.041 25832 288 curveto +25860.6 297.861 25941.2 281.89 25968 296 curveto +26025.7 326.413 25999.5 383.148 26058 412 curveto +26077.7 421.721 27625.5 404.414 27641 420 curveto +27677.4 456.547 27660.4 488.249 27641 536 curveto +27612 607.319 27591 630.086 27520 660 curveto +27480.9 676.471 3138.93 653.753 3099 668 curveto +3074.59 676.71 3052.19 696.151 3037 711.859 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11137.2 386.785 moveto -21.2 1.329 rlineto --17.4 12.149 rlineto --3.8 -13.478 rlineto -11137.2 386.785 lineto +25802.7 281.309 moveto +-12.5 -17.149 rlineto +20.5 5.644 rlineto +-8 11.505 rlineto +25802.7 281.309 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11784.7 241.147 moveto -11077 242.777 4854.68 258.183 4770 296 curveto -4749.89 304.98 4733.53 324.176 4722.84 339.729 curveto +25721.6 275.531 moveto +25713.2 280.662 25704.2 285.172 25695 288 curveto +25657.1 299.695 2874.94 279.189 2839 296 curveto +2819.77 304.992 2804.83 324.186 2795.23 339.736 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11784.9 234.146 moveto -20 6.954 rlineto --20 7.046 rlineto -0 -14 rlineto -11784.9 234.146 lineto +25717.7 269.715 moveto +20.4 -5.622 rlineto +-12.5 17.135 rlineto +-7.9 -11.513 rlineto +25717.7 269.715 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4805.58 523.027 moveto -4796.56 528.337 4786.81 533.04 4777 536 curveto -4747 545.054 4240.98 529.887 4213 544 curveto -4194.73 553.217 4181.19 572.391 4172.67 587.875 curveto +13701.9 397.106 moveto +13688.6 403.254 13674.1 408.775 13660 412 curveto +13627 419.537 8816.87 419.744 8783 420 curveto +6754.5 435.328 4260.86 478.951 3864.26 486.025 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4801.82 517.126 moveto -20.56 -5.121 rlineto --12.88 16.826 rlineto --7.68 -11.705 rlineto -4801.82 517.126 lineto +13698.9 390.819 moveto +21 -2.649 rlineto +-14.8 15.181 rlineto +-6.2 -12.532 rlineto +13698.9 390.819 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4847.16 532.275 moveto -4845.93 551.008 4844.55 572.185 4843.52 587.852 curveto +31204.6 241.809 moveto +30764.6 247.211 28190 278.116 26093 288 curveto +26073.1 288.094 3139.24 287.936 3121 296 curveto +3100.86 304.906 3084.5 324.108 3073.82 339.683 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4840.18 531.734 moveto -8.3 -19.5 rlineto -5.67 20.416 rlineto --13.97 -0.916 rlineto -4840.18 531.734 lineto +31204.7 234.808 moveto +20.1 6.753 rlineto +-19.9 7.246 rlineto +-0.2 -13.999 rlineto +31204.7 234.808 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4798.32 523.011 moveto -4791.21 527.471 4783.97 531.909 4777 536 curveto -4770.48 539.826 4768.19 539.675 4762 544 curveto -4743.39 556.994 4724.34 574.069 4710.1 587.729 curveto +3735.41 493.24 moveto +3685.99 499.044 3621.57 512.588 3573 544 curveto +3556.31 554.797 3542.96 573.031 3534.11 587.754 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4794.84 516.932 moveto -20.62 -4.87 rlineto --13.09 16.667 rlineto --7.53 -11.797 rlineto -4794.84 516.932 lineto +3734.98 486.248 moveto +20.6 4.949 rlineto +-19.19 8.98 rlineto +-1.41 -13.929 rlineto +3734.98 486.248 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4789.63 522.634 moveto -4780.07 528.112 4770.07 532.977 4760 536 curveto -4741.38 541.593 4075.81 532.682 4060 544 curveto -4015.54 575.827 4061 624.989 4019 660 curveto -4001.71 674.409 3983.6 650.876 3969 668 curveto -3924.37 720.333 3953.58 809.803 3978.34 851.863 curveto +3760.15 523.755 moveto +3751.03 530.356 3741.66 537.297 3733 544 curveto +3714.81 558.083 3694.98 574.683 3679.61 587.836 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4786.15 516.561 moveto -20.7 -4.535 rlineto --13.36 16.453 rlineto --7.34 -11.918 rlineto -4786.15 516.561 lineto +3756.27 517.925 moveto +20.35 -5.921 rlineto +-12.21 17.316 rlineto +-8.14 -11.395 rlineto +3756.27 517.925 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4838.84 512.026 moveto -4827.45 521.37 4811.31 531.101 4795 536 curveto -4776.38 541.593 4110.81 532.682 4095 544 curveto -4050.54 575.827 4096 624.989 4054 660 curveto -4036.71 674.409 4018.6 650.876 4004 668 curveto -3959.37 720.333 3988.58 809.803 3998.8 851.863 curveto +3809.29 532.275 moveto +3808.98 551.008 3808.64 572.185 3808.38 587.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4183.69 780.134 moveto -4183.52 803.836 4183.31 832.3 4183.17 851.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4176.69 780.047 moveto -7.14 -19.949 rlineto -6.86 20.05 rlineto --14 -0.101 rlineto -4176.69 780.047 lineto +3802.29 532.117 moveto +7.33 -19.883 rlineto +6.67 20.113 rlineto +-14 -0.23 rlineto +3802.29 532.117 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4601.75 771.95 moveto -4594.25 776.773 4586.19 781.07 4578 784 curveto -4550.75 793.755 4474.39 780.107 4448 792 curveto -4419.57 804.811 4395.48 831.956 4380.69 851.725 curveto +3735.59 495.616 moveto +3627.16 505.955 3420.57 525.808 3245 536 curveto +3230.41 536.847 2995.15 537.62 2982 544 curveto +2917.28 575.393 2902.59 600.406 2878 668 curveto +2854.9 731.477 2876.76 812.67 2896.84 851.827 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4597.76 766.197 moveto -20.31 -6.057 rlineto --12.1 17.397 rlineto --8.21 -11.34 rlineto -4597.76 766.197 lineto +3735.04 488.637 moveto +20.57 5.074 rlineto +-19.25 8.863 rlineto +-1.32 -13.937 rlineto +3735.04 488.637 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -3984.02 754.862 moveto -3950.03 763.901 3907.88 774.865 3870 784 curveto -3737.5 815.955 3579.92 849.647 3504.13 865.586 curveto +3755.71 495.815 moveto +3659.52 506.208 3454.45 525.874 3280 536 curveto +3265.41 536.847 3030.15 537.62 3017 544 curveto +2952.28 575.393 2937.59 600.406 2913 668 curveto +2889.9 731.477 2911.76 812.67 2918.2 851.827 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -3982.37 748.056 moveto -21.13 1.597 rlineto --17.51 11.928 rlineto --3.62 -13.525 rlineto -3982.37 748.056 lineto +3231.29 775.133 moveto +3209.55 799.725 3181.98 830.905 3163.49 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3226.09 770.446 moveto +18.49 -10.348 rlineto +-8 19.621 rlineto +-10.49 -9.273 rlineto +3226.09 770.446 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4180.38 636.097 moveto -4189.17 645.331 4200.49 654.957 4213 660 curveto -4250.62 675.169 4540.82 651.784 4578 668 curveto -4598.8 677.07 4616.29 696.257 4627.87 711.784 curveto +3558.86 772.16 moveto +3566.17 776.9 3574.02 781.115 3582 784 curveto +3609.85 794.062 3687.96 779.934 3715 792 curveto +3743.64 804.783 3768.05 831.933 3783.06 851.712 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -3288.27 512.161 moveto -3275.82 520.836 3260.81 530.027 3246 536 curveto -3228.38 543.106 3220.98 535.472 3204 544 curveto -3182.94 554.576 3163.51 573.021 3150 587.883 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3345.54 512.224 moveto -3358.24 521.481 3374.02 531.091 3390 536 curveto -3438.02 550.749 3793.6 530.566 3842 544 curveto -3873.6 552.77 3905.58 572.204 3927.93 587.895 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2907.43 512.234 moveto -2910.63 533.943 2915.39 566.172 2918.58 587.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2946.96 512.091 moveto -2987.32 533.782 3047.4 566.069 3087.83 587.796 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2860.73 512.101 moveto -2849.28 520.51 2838.34 531.169 2832 544 curveto -2809.15 590.214 2807.34 614.723 2832 660 curveto -2880.58 749.211 2930.04 745.395 3024 784 curveto -3159.42 839.638 3333.08 862.792 3413.89 871.05 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -2879.64 512.255 moveto -2871.8 521.326 2864.09 532.346 2860 544 curveto -2842.93 592.649 2823.65 623.44 2860 660 curveto -2873.64 673.72 4234.28 663.106 4253 668 curveto -4285.76 676.564 4319.14 696.019 4342.52 711.771 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4680.78 388.2 moveto -4670.23 396.288 4657.91 405.067 4646 412 curveto -4609.86 433.037 4566.72 451.917 4532.81 465.472 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4873.87 463.812 moveto -4891.82 448.081 4917.88 428.633 4945 420 curveto -4957.1 416.147 8594.03 420.991 8603 412 curveto -8639.42 375.505 8639.43 332.476 8603 296 curveto -8594.46 287.452 1655.72 290.94 1644 288 curveto -1625.02 283.237 1605.65 273.521 1589.93 264.153 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4822.4 512.075 moveto -4809.47 521.428 4793.33 531.153 4777 536 curveto -4735.11 548.434 3244.68 528.043 3204 544 curveto -3181.42 552.858 3161.57 572.283 3148.29 587.948 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4822.38 512.022 moveto -4809.45 521.364 4793.31 531.096 4777 536 curveto -4759.28 541.326 4124 530.839 4111 544 curveto -4074.76 580.674 4075.58 622.533 4111 660 curveto -4121.86 671.484 4237.82 663.618 4253 668 curveto -4285.3 677.322 4318.46 696.486 4341.88 711.939 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4822.01 512.176 moveto -4809.13 521.425 4793.14 531.041 4777 536 curveto -4759.52 541.371 4460.77 530.916 4448 544 curveto -4411.99 580.896 4411.96 623.135 4448 660 curveto -4461.75 674.066 4784.1 659.846 4802 668 curveto -4822.04 677.129 4838.41 696.311 4849.12 711.82 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4405.4 760.136 moveto -4420.01 769.5 4438.09 779.218 4456 784 curveto -4500.34 795.834 11018.2 789.373 11064 792 curveto -11363 809.15 11727.8 864.824 11785.2 873.779 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4405.44 760.002 moveto -4420.05 769.341 4438.12 779.075 4456 784 curveto -4480.91 790.862 4895.18 791.089 4921 792 curveto -6154.88 835.515 6460.84 905.634 7695 940 curveto -8069.19 950.419 10690 932.52 11064 948 curveto -11352.3 959.933 11695.5 993.839 11833.7 1008.315 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4342.52 711.769 moveto -4319.14 696.018 4285.76 676.562 4253 668 curveto -4214.81 658.018 2871.41 662.163 2832 660 curveto -2301.93 630.915 2145.9 708.977 1644 536 curveto -1628.02 530.492 1611.92 521.04 1598.76 512.05 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4337.86 760.049 moveto -4321.47 769.274 4301.43 778.907 4282 784 curveto -4239.4 795.165 4124.44 774.571 4084 792 curveto -4054.83 804.572 4030 832.054 4014.84 851.958 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4405.89 760.024 moveto -4420.45 769.244 4438.35 778.88 4456 784 curveto -4494.67 795.216 4599.83 776.523 4637 792 curveto -4667.22 804.583 4693.65 832.063 4709.91 851.963 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3158.59 636.1 moveto -3171.53 645.457 3187.66 655.18 3204 660 curveto -3261.93 677.095 7493.31 658.777 7553 668 curveto -7607.98 676.494 7668.25 696.518 7710.6 712.476 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3158.61 636.055 moveto -3171.54 645.404 3187.68 655.132 3204 660 curveto -3259.85 676.656 4196.63 653.206 4253 668 curveto -4285.75 676.595 4319.13 696.047 4342.51 711.789 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3977.97 388.119 moveto -3994.97 395.94 4014.23 404.569 4032 412 curveto -4041.21 415.853 4047.33 411.776 4053 420 curveto -4082.26 462.451 4088.61 498.717 4053 536 curveto -4039.63 549.996 3894.36 532.226 3879 544 curveto -3836.05 576.921 3876.2 618.059 3842 660 curveto -3750.57 772.141 3584.26 836.161 3504.3 861.787 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3969.22 388.087 moveto -3987.71 397.442 4010.32 407.166 4032 412 curveto -4072.4 421.009 4738.51 404.776 4777 420 curveto -4799.56 428.921 4819.41 448.34 4832.7 463.987 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4840.24 760.098 moveto -4815.13 785.572 4774.97 826.322 4749.84 851.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4864 760.098 moveto -4865.11 785.572 4866.88 826.322 4867.99 851.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4745.91 900.098 moveto -4766.77 925.572 4800.14 966.322 4821.02 991.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4550 587.876 moveto -4565.2 572.176 4587.6 552.738 4612 544 curveto -4632.01 536.834 7651.78 537.325 7673 536 curveto -9437.32 425.786 8963.8 577.117 8683 296 curveto -8674.36 287.354 1655.85 290.974 1644 288 curveto -1625.02 283.237 1605.65 273.521 1589.93 264.153 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4561.89 636.041 moveto -4576.44 645.265 4594.34 654.899 4612 660 curveto -4652.6 671.73 4763.71 650.109 4802 668 curveto -4821.95 677.324 4838.32 696.488 4849.07 711.94 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4626.26 760.098 moveto -4607.8 785.572 4578.27 826.322 4559.79 851.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4864.15 900.098 moveto -4858.79 925.572 4850.23 966.322 4844.87 991.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4815.94 388.116 moveto -4803.89 397.688 4790.04 409.087 4778 420 curveto -4762.64 433.929 4746.27 450.527 4733.68 463.718 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4846.76 388.234 moveto -4847.47 409.943 4848.53 442.172 4849.24 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4207 388.234 moveto -4207 409.943 4207 442.172 4207 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3087.59 512.199 moveto -3075.79 520.51 3064.59 531.091 3058 544 curveto -3034.55 589.914 3021.67 623.423 3058 660 curveto -3069.7 671.775 4236.94 663.794 4253 668 curveto -4285.75 676.58 4319.13 696.033 4342.51 711.78 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3133.43 512.234 moveto -3132.89 533.943 3132.1 566.172 3131.57 587.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -3063.16 512.056 moveto -3049.18 519.946 3036.29 530.358 3028 544 curveto -3001.22 588.058 3007.26 612.798 3028 660 curveto -3094.76 811.968 3317.12 857.531 3413.64 870.333 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4397.28 388.234 moveto -4414.36 409.943 4439.73 442.172 4456.79 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4303.41 636.238 moveto -4299.83 646.024 4295.66 657.547 4292 668 curveto -4274.04 719.34 4296.4 751.218 4253 784 curveto -4238 795.33 4101.24 784.5 4084 792 curveto -4055.06 804.59 4030.35 831.778 4015.15 851.618 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4323.81 636.234 moveto -4334.84 657.943 4351.22 690.172 4362.24 711.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4354.59 636.032 moveto -4373.97 645.315 4397.55 654.997 4420 660 curveto -4451.03 666.913 4677.86 653.217 4706 668 curveto -4723.86 677.382 4736.84 696.54 4744.94 711.976 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11877.3 388.29 moveto -11874.3 446.16 11857.4 596.391 11765 660 curveto -11744.1 674.393 4479.9 659.463 4456 668 curveto -4431.59 676.72 4409.19 696.159 4394 711.865 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4906.25 452.071 moveto -4923.61 439.784 4943.13 427.244 4963 420 curveto -5002.39 405.639 5017.15 425.049 5057 412 curveto -5073.37 406.639 5089.89 397.207 5101.98 388.193 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4910.3 457.776 moveto --20.31 6.053 rlineto -12.1 -17.396 rlineto -8.21 11.343 rlineto -4910.3 457.776 lineto +3554.47 777.623 moveto +-11.98 -17.474 rlineto +20.26 6.185 rlineto +-8.28 11.289 rlineto +3554.47 777.623 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -5069.76 388.193 moveto -5054.89 397.207 5038.37 406.639 5022 412 curveto -4982.15 425.049 4967.39 405.639 4928 420 curveto -4901.64 429.608 4875.9 448.535 4860.6 463.829 curveto +3605.08 772.176 moveto +3597.5 777.01 3589.33 781.252 3581 784 curveto +3543.12 796.495 2902.77 788.917 2863 792 curveto +2664.73 807.371 2430.75 848.426 2334.16 866.386 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4544.11 695.686 moveto -4553.65 684.63 4565.47 673.995 4579 668 curveto -4591.2 662.595 8411.58 669.443 8421 660 curveto -8703.73 376.684 7952.18 449.233 7553 420 curveto -7501.55 416.232 5745.75 425.647 5696 412 curveto -5678.45 407.184 5660.8 397.463 5646.57 388.104 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4549.55 700.089 moveto --17.73 11.604 rlineto -6.62 -20.127 rlineto -11.11 8.523 rlineto -4549.55 700.089 lineto +3601.2 766.339 moveto +20.3 -6.093 rlineto +-12.07 17.419 rlineto +-8.23 -11.326 rlineto +3601.2 766.339 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11000.6 694.383 moveto -10993.4 683.894 10984.3 673.903 10973 668 curveto -10949.6 655.763 9097.12 663.969 9071 660 curveto -8711.15 605.315 8647.86 474.619 8288 420 curveto -8230.71 411.305 6258.42 425.185 6202 412 curveto -6181.58 407.229 6160.48 397.512 6143.28 388.145 curveto +3521.24 636.234 moveto +3520.53 657.943 3519.47 690.172 3518.76 711.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11006.7 691.051 moveto -4 20.822 rlineto --16.1 -13.826 rlineto -12.1 -6.996 rlineto -11006.7 691.051 lineto +2440.42 512.115 moveto +2427.72 521.353 2411.95 530.977 2396 536 curveto +2342.98 552.7 2197.47 523.008 2146 544 curveto +2123.7 553.096 2103.96 572.281 2090.65 587.8 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2495.56 512.114 moveto +2508.04 521.231 2523.45 530.763 2539 536 curveto +2590.92 553.484 2611.02 523.934 2662 544 curveto +2685.78 553.36 2707.91 572.308 2723.17 587.673 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1631.24 512.234 moveto +1645.47 533.943 1666.6 566.172 1680.82 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1662.64 512.09 moveto +1683.62 521.323 1709.01 530.95 1733 536 curveto +1785.87 547.128 1924.69 527.071 1976 544 curveto +2003.21 552.978 2029.67 572.174 2048.06 587.727 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1671.73 512.012 moveto +1691.06 519.825 1712.91 528.476 1733 536 curveto +1743.14 539.796 1749.02 535.726 1756 544 curveto +1825.71 626.666 1720.2 706.873 1796 784 curveto +1858.23 847.318 2134.34 867.509 2243.94 873.099 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1610.07 512.236 moveto +1602.1 549.573 1593.24 622.522 1634 660 curveto +1641.81 667.183 2005.4 667.534 2016 668 curveto +2370.1 683.55 2793.77 716.715 2952.65 729.664 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3033.06 388.1 moveto +3022.35 396.46 3009.59 405.446 2997 412 curveto +2942.33 440.463 2874.7 461.142 2827.55 473.489 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3864.26 486.009 moveto +4260.86 478.818 6754.49 434.521 8783 420 curveto +8791.22 419.941 18245.2 417.814 18251 412 curveto +18287.4 375.529 18287.4 332.484 18251 296 curveto +18238.4 283.343 13117 293.521 13100 288 curveto +13085 283.143 13070.6 273.416 13059.2 264.065 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3755.65 495.084 moveto +3657.31 505.775 3443.23 527.592 3262 536 curveto +3231.03 537.437 2174.85 532.649 2146 544 curveto +2123.43 552.881 2103.58 572.304 2090.29 587.963 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3755.62 494.548 moveto +3657.23 504.389 3443.09 524.903 3262 536 curveto +3249.96 536.738 3053.98 535.946 3045 544 curveto +2997.59 586.514 3005.13 671.132 3012.17 711.938 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3755.33 490.937 moveto +3631.21 495.896 3336.54 511.052 3307 544 curveto +3272.58 582.385 3276.15 618.69 3307 660 curveto +3314.49 670.029 3323.4 661.35 3334 668 curveto +3351.99 679.283 3367.97 697.298 3379.06 711.807 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3048.4 760.135 moveto +3063.01 769.499 3081.09 779.217 3099 784 curveto +3119.16 789.382 9090.34 780.89 9108 792 curveto +9124.53 802.396 9134.39 821.748 9140.18 839.152 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3048.42 760.06 moveto +3063.03 769.41 3081.11 779.138 3099 784 curveto +3140.93 795.394 3837.82 787.185 3881 792 curveto +4191.85 826.665 4258.01 906.652 4569 940 curveto +4631.68 946.722 9046.48 934.245 9108 948 curveto +9145.86 956.464 9185.56 976.041 9213.49 991.86 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3037 711.864 moveto +3052.19 696.158 3074.59 676.719 3099 668 curveto +3124.83 658.774 10971.6 660.804 10999 660 curveto +11028.9 659.123 13121.3 547.286 13149 536 curveto +13161.8 530.794 13173.6 521.267 13182.9 512.144 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3000.09 760.098 moveto +2981.45 785.572 2951.63 826.322 2932.96 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3049.31 760.169 moveto +3063.8 769.296 3081.54 778.82 3099 784 curveto +3129.3 792.988 3211.9 779.674 3241 792 curveto +3270.95 804.683 3297.24 831.852 3313.56 851.663 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2100.6 636.077 moveto +2113.53 645.431 2129.67 655.156 2146 660 curveto +2168.44 666.656 3810.51 656.701 3831 668 curveto +3884.55 697.525 3851.39 754.577 3905 784 curveto +3917.63 790.93 12186.6 791.948 12201 792 curveto +17836 812.234 24808.7 868.897 25495.9 874.545 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2101.84 636.198 moveto +2114.62 645.213 2130.31 654.643 2146 660 curveto +2295.47 711.025 2777.59 728.656 2952.69 733.466 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2665.84 388.242 moveto +2684.08 397.264 2706.04 406.689 2727 412 curveto +2739.63 415.201 2835.11 410.477 2844 420 curveto +2917.11 498.282 2889.48 576.811 2822 660 curveto +2695.5 815.953 2438.5 859.578 2334.35 871.104 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2664.23 388.044 moveto +2682.72 397.391 2705.33 407.12 2727 412 curveto +2785 425.062 3202.69 415.942 3262 420 curveto +3443.69 432.429 3657.54 463.315 3755.74 478.415 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3384.29 760.098 moveto +3372.47 785.572 3353.58 826.322 3341.75 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3417.26 760.198 moveto +3427.51 769.33 3440.41 778.85 3454 784 curveto +3486.25 796.218 3579.12 774.779 3609 792 curveto +3631.79 805.133 3646.63 832.215 3654.88 851.881 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3358.8 900.164 moveto +3375.66 913.297 3398.09 929.209 3420 940 curveto +3477.43 968.288 3547.76 988.592 3597.95 1000.881 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3409 587.859 moveto +3424.19 572.151 3446.59 552.71 3471 544 curveto +3490.61 537.005 27438.3 550.723 27453 536 curveto +27489.4 499.539 27489.4 456.485 27453 420 curveto +27441 407.984 22578.2 419.481 22563 412 curveto +22504.4 383.248 22531.6 324.729 22473 296 curveto +22443.8 281.671 13131 298.035 13100 288 curveto +13085 283.148 13070.6 273.422 13059.2 264.07 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3390.14 636.234 moveto +3391.21 657.943 3392.8 690.172 3393.86 711.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3517.5 760.098 moveto +3516.94 785.572 3516.06 826.322 3515.5 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3663 900.098 moveto +3663 925.572 3663 966.322 3663 991.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3197 388.234 moveto +3197 409.943 3197 442.172 3197 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3227.66 388.016 moveto +3240.95 396.888 3257.09 406.26 3273 412 curveto +3441.68 472.868 3656.68 484.678 3755.65 486.737 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2089.65 388.179 moveto +2100.68 397.429 2114.54 407.044 2129 412 curveto +2172.1 426.775 2496.43 403.753 2539 420 curveto +2562.35 428.912 2583.49 448.114 2597.85 463.686 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1410.15 512.135 moveto +1455.67 555.125 1553.4 644.39 1596 660 curveto +1617.91 668.029 1992.68 666.998 2016 668 curveto +2370.12 683.215 2793.78 716.578 2952.65 729.622 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1430.38 512.027 moveto +1450.72 521.37 1475.5 531.101 1499 536 curveto +1550.89 546.815 1925.53 527.798 1976 544 curveto +2003.48 552.821 2030.11 572.25 2048.5 587.926 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +1387.27 512.06 moveto +1390.45 548.169 1401.65 618.236 1441 660 curveto +1554 779.942 2084.74 851.027 2243.82 869.902 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2455.58 388.08 moveto +2475.05 397.251 2498.61 406.833 2521 412 curveto +2558.28 420.604 2657.48 405.762 2693 420 curveto +2716.03 429.231 2736.9 448.404 2751.08 463.883 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3062.94 624.591 moveto +3011.58 633.698 2951.79 648.169 2935 668 curveto +2890.46 720.609 2901.81 809.943 2910.44 851.917 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3119.81 636.234 moveto +3097.22 657.943 3063.67 690.172 3041.1 711.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3144.57 636.234 moveto +3145.11 657.943 3145.9 690.172 3146.43 711.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31262 388.139 moveto +31244.1 397.505 31222.1 407.222 31201 412 curveto +31116.4 431.115 29725.2 403.631 29640 420 curveto +29501.6 446.591 29481.6 501.484 29345 536 curveto +28900.1 648.425 28778 632.322 28320 660 curveto +28298.1 661.321 3119.62 660.643 3099 668 curveto +3074.59 676.71 3052.19 696.151 3037 711.859 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.69 485.738 moveto +4341.04 477.831 6797.82 434.949 8801 420 curveto +8820.11 419.857 14287.6 417.186 14306 412 curveto +14323 407.199 14340 397.479 14352.2 388.118 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.59 492.741 moveto +-20.11 -6.653 rlineto +19.87 -7.345 rlineto +0.24 13.998 rlineto +3884.59 492.741 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.922 moveto -1619.22 279.731 1631.69 284.905 1644 288 curveto -1693.65 300.485 5280.93 281.388 5330 296 curveto -5358.83 304.585 5387.15 324.038 5406.77 339.783 curveto +14320.2 388.118 moveto +14305 397.479 14288 407.199 14271 412 curveto +14252.6 417.186 8785.11 419.857 8766 420 curveto +6744.51 435.086 4261.1 478.617 3864.45 485.946 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.924 moveto --14.14 -15.78 rlineto -20.9 3.516 rlineto --6.76 12.264 rlineto -1604.07 279.924 lineto +3823.46 701.682 moveto +3847.35 688.41 3876.6 674.71 3905 668 curveto +3923.71 663.58 26037.4 673.596 26051 660 curveto +26088.7 622.281 26088.7 457.726 26051 420 curveto +26037.4 406.361 14963.6 417.068 14945 412 curveto +14927.4 407.216 14909.8 397.498 14895.6 388.134 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3826.75 707.862 moveto +-20.81 3.997 rlineto +13.78 -16.102 rlineto +7.03 12.105 rlineto +3826.75 707.862 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.925 moveto -1619.22 279.734 1631.69 284.907 1644 288 curveto -1672.84 295.248 5899.19 283.142 5926 296 curveto -5944.86 305.044 5959.24 324.234 5968.4 339.768 curveto +9111.24 725.148 moveto +9189.82 709.315 9352.55 678.883 9492 668 curveto +9506.51 666.868 26245.7 670.292 26256 660 curveto +26331.4 584.551 26329.3 494.541 26253 420 curveto +26239.6 406.896 15469.3 416.239 15451 412 curveto +15430.6 407.26 15409.5 397.547 15392.3 388.175 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.926 moveto --14.14 -15.779 rlineto -20.9 3.516 rlineto --6.76 12.263 rlineto -1604.07 279.926 lineto +9112.61 732.012 moveto +-20.99 -2.859 rlineto +18.19 -10.858 rlineto +2.8 13.717 rlineto +9112.61 732.012 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.924 moveto -1619.22 279.733 1631.69 284.906 1644 288 curveto -1698.58 301.719 5641.66 281.376 5696 296 curveto -5727.67 304.521 5759.64 323.981 5781.98 339.745 curveto +13075.4 275.883 moveto +13083.1 280.851 13091.5 285.213 13100 288 curveto +13139.1 300.757 14539.6 284.21 14579 296 curveto +14607.8 304.632 14636.1 324.08 14655.8 339.811 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.925 moveto --14.14 -15.779 rlineto -20.9 3.516 rlineto --6.76 12.263 rlineto -1604.07 279.925 lineto +13071.2 281.493 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.493 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -5584.99 388.03 moveto -5570.57 397.375 5552.71 407.106 5535 412 curveto -5471.81 429.466 5007.36 399.756 4945 420 curveto -4917.93 428.787 4891.86 448.219 4873.9 463.905 curveto +13075.4 275.895 moveto +13083.1 280.861 13091.5 285.22 13100 288 curveto +13127.4 296.927 15149 283.513 15175 296 curveto +15193.9 305.062 15208.2 324.251 15217.4 339.779 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -5857.32 388.048 moveto -5878.26 397.458 5903.8 407.236 5928 412 curveto -5985.62 423.342 7983.85 411.798 8042 420 curveto -8241.91 448.199 8292.24 467.324 8479 544 curveto -8578 584.644 8586.4 633.184 8690 660 curveto -8745.26 674.304 10689.9 653.01 10745 668 curveto -10776.4 676.556 10808.1 696.012 10830.3 711.765 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5419.1 388.234 moveto -5406.11 409.943 5386.82 442.172 5373.85 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5446.71 388.234 moveto -5459.52 409.943 5478.54 442.172 5491.34 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -5392.27 388.233 moveto -5373.86 397.492 5351.46 407.101 5330 412 curveto -5288.29 421.522 4985.65 406.642 4945 420 curveto -4917.97 428.884 4891.89 448.307 4873.92 463.965 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -4964.96 388.234 moveto -4939.69 409.943 4902.18 442.172 4876.94 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6106 388.234 moveto -6106 409.943 6106 442.172 6106 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6143.29 388.141 moveto -6160.48 397.506 6181.58 407.223 6202 412 curveto -6251.77 423.643 7991.39 412.847 8042 420 curveto -8261.4 451.012 8635.52 503.149 8479 660 curveto -8469.75 669.271 4719.04 662.837 4707 668 curveto -4686.16 676.941 4668.86 696.358 4657.52 711.999 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1607.69 273.93 moveto -1619.22 279.738 1631.69 284.91 1644 288 curveto -1682.89 297.763 7382 278.337 7418 296 curveto -7476.58 324.745 7449.57 382.955 7508 412 curveto -7525.09 420.495 8176 418.255 8195 420 curveto -8516.61 449.53 8593.72 483.682 8911 544 curveto -9160.7 591.471 9218.22 633.414 9471 660 curveto -9491.75 662.182 10954.5 658.326 10973 668 curveto -10990.6 677.224 11003 696.398 11010.7 711.879 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1604.07 279.931 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.931 lineto +13071.2 281.504 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.504 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4907.24 521.196 moveto -4919.4 526.921 4932.38 532.247 4945 536 curveto -5390.32 668.484 5519.23 631.972 5983 660 curveto -6013.35 661.834 10332.5 657.411 10361 668 curveto -10384.6 676.767 10405.9 696.202 10420.2 711.893 curveto +13075.4 275.891 moveto +13083.1 280.858 13091.5 285.218 13100 288 curveto +13148.7 303.888 14895.5 282.624 14945 296 curveto +14976.7 304.559 15008.6 324.015 15031 339.767 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4903.72 527.261 moveto --14.74 -15.224 rlineto -21.02 2.71 rlineto --6.28 12.514 rlineto -4903.72 527.261 lineto +13071.2 281.5 moveto +-12 -17.454 rlineto +20.3 6.152 rlineto +-8.3 11.302 rlineto +13071.2 281.5 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4904.71 521.266 moveto -4917.52 527.332 4931.41 532.777 4945 536 curveto -5015 552.598 6169.45 529.876 6240 544 curveto -6373.29 570.685 6389.65 633.61 6523 660 curveto -6538.6 663.088 11092.8 656.743 11104 668 curveto -11140.4 704.487 11129.4 739.149 11104 784 curveto -11086 815.707 11052.1 837.559 11020.9 851.885 curveto +14834 388.132 moveto +14819.6 397.496 14801.7 407.214 14784 412 curveto +14763.9 417.428 8803.84 419.846 8783 420 curveto +6754.5 435.016 4260.86 478.9 3864.26 486.019 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4901.48 527.475 moveto --14.61 -15.354 rlineto -20.99 2.895 rlineto --6.38 12.459 rlineto -4901.48 527.475 lineto +15106.3 388.082 moveto +15127.3 397.499 15152.8 407.273 15177 412 curveto +15195.6 415.638 26097.4 406.736 26111 420 curveto +26187.3 494.541 26189.4 584.552 26114 660 curveto +26103.1 670.907 8362.89 663.976 8348 668 curveto +8316.55 676.501 8284.86 695.963 8262.73 711.733 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14668.1 388.234 moveto +14655.1 409.943 14635.8 442.172 14622.9 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14695.7 388.234 moveto +14708.5 409.943 14727.5 442.172 14740.3 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14641.8 388.182 moveto +14623.3 397.555 14600.7 407.267 14579 412 curveto +14539.7 420.577 8823.25 419.701 8783 420 curveto +6754.5 435.064 4260.86 478.907 3864.26 486.02 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14214.3 388.094 moveto +14201.7 397.451 14186 407.174 14170 412 curveto +14152.1 417.405 8801.7 419.86 8783 420 curveto +6754.5 435.17 4260.86 478.925 3864.26 486.022 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15355 388.234 moveto +15355 409.943 15355 442.172 15355 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15392.3 388.175 moveto +15409.5 397.547 15430.6 407.26 15451 412 curveto +15468.9 416.16 26038 406.982 26051 420 curveto +26126.4 495.453 26126.4 584.562 26051 660 curveto +26037.2 673.794 3599.93 660.327 3582 668 curveto +3561.15 676.923 3543.85 696.342 3532.52 711.988 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.905 moveto +13083.1 280.871 13091.5 285.226 13100 288 curveto +13122.5 295.312 16485.8 285.567 16507 296 curveto +16565.6 324.773 16538.4 383.272 16597 412 curveto +16612.1 419.423 26297 408.121 26309 420 curveto +26384.7 495.152 26385.4 584.557 26310 660 curveto +26299.7 670.325 9506.55 666.864 9492 668 curveto +9339.6 679.893 9159.4 715.135 9091.62 729.153 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.514 moveto +-12 -17.454 rlineto +20.3 6.153 rlineto +-8.3 11.301 rlineto +13071.2 281.514 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11048.5 852.247 moveto -11084.2 838.643 11121 817.269 11142 784 curveto -11169.5 740.376 11178.4 704.487 11142 668 curveto -11130.8 656.824 6609.18 664.36 6594 660 curveto -6500.36 633.104 6501.59 571.069 6408 544 curveto -6368.96 532.709 4984.55 545.362 4945 536 curveto -4924.77 531.21 4903.89 521.491 4886.87 512.128 curveto +13075.4 275.907 moveto +13083.1 280.872 13091.5 285.227 13100 288 curveto +13124.8 296.071 16838.6 284.483 16862 296 curveto +16920.6 324.766 16893.4 383.272 16952 412 curveto +16967 419.362 26572.2 408.171 26584 420 curveto +26659.4 495.456 26599.4 554.453 26584 660 curveto +26575.7 716.909 26593.1 749.624 26547 784 curveto +26534.9 793.036 9146.63 788.196 9132 792 curveto +9087.58 803.548 9042.33 831.539 9013.53 851.829 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4924.7 615.954 moveto -5175.73 624.764 5951.05 650.806 6594 660 curveto -6601.81 660.112 11089.5 662.47 11095 668 curveto -11180.4 753.557 11166.4 842.472 11095 940 curveto -11060.9 986.568 10997.7 1004.948 10945.2 1011.884 curveto +13071.2 281.516 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.516 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.55 494.621 moveto +4224.86 519.983 5665.18 624.064 6849 660 curveto +6873.77 660.752 8609.78 659.339 8633 668 curveto +8656.58 676.798 8677.85 696.23 8692.2 711.912 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4924.19 622.941 moveto --19.74 -7.7 rlineto +3883.83 501.587 moveto +-19.42 -8.47 rlineto +20.46 -5.491 rlineto +-1.04 13.961 rlineto +3883.83 501.587 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.57 489.382 moveto +4411.07 492.165 7553.31 510.147 7751 544 curveto +7910.03 571.233 7935.81 633.683 8095 660 curveto +8106.21 661.853 11358 659.959 11366 668 curveto +11402.4 704.5 11402.4 747.487 11366 784 curveto +11353.7 796.345 8872.55 786.544 8856 792 curveto +8820.17 803.809 8786.3 831.745 8765.16 851.951 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.5 496.382 moveto +-19.96 -7.105 rlineto +20.03 -6.895 rlineto +-0.07 14 rlineto +3884.5 496.382 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8765.15 851.944 moveto +8786.3 831.734 8820.16 803.795 8856 792 curveto +8878.06 784.738 12184.6 800.445 12201 784 curveto +12237.4 747.501 12237.4 704.495 12201 668 curveto +12192.1 659.092 8589.1 663.448 8577 660 curveto +8482.58 633.101 8483.29 571.362 8389 544 curveto +8274.8 510.861 4372.62 491.616 3864.38 489.248 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.44 489.342 moveto +4368.65 491.674 7062.46 506.274 7426 544 curveto +7695.29 571.945 7754.54 633.777 8024 660 curveto +8035.41 661.111 11317.9 659.883 11326 668 curveto +11362.4 704.499 11362.4 747.491 11326 784 curveto +11312.8 797.263 8646.34 784.91 8629 792 curveto +8599.6 804.024 8574.81 831.617 8559.73 851.697 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.29 496.342 moveto +-19.97 -7.095 rlineto +20.04 -6.905 rlineto +-0.07 14 rlineto +3884.29 496.342 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.73 489.289 moveto +4445.91 491.539 7981.1 507.159 8084 544 curveto +8161.7 571.818 8151.15 632.605 8229 660 curveto +8242.2 664.645 12249.1 658.136 12259 668 curveto +12269.7 678.684 12270.6 929.367 12260 940 curveto +12252.4 947.592 9182.68 947.061 9172 948 curveto +9055.88 958.206 8922.17 985.011 8847.12 1001.456 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.54 496.288 moveto +-19.97 -7.079 rlineto +20.02 -6.921 rlineto +-0.05 14 rlineto +3884.54 496.288 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3700.83 646.534 moveto +3711.02 652.088 3722.02 657.007 3733 660 curveto +3754.05 665.74 10000.52 652.626 10016 668 curveto +10026.7 678.677 10027.6 929.358 10017 940 curveto +10011.4 945.664 7721.99 947.674 7714 948 curveto +7431.99 959.498 7098.93 990.574 6944.16 1006.026 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3697.08 652.447 moveto +-13.52 -16.318 rlineto +20.74 4.327 rlineto +-7.22 11.991 rlineto +3697.08 652.447 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3700.86 646.433 moveto +3711.04 651.995 3722.04 656.943 3733 660 curveto +3765.97 669.198 4318.53 652.411 4349 668 curveto +4406.13 697.232 4377.99 754.527 4435 784 curveto +4471.82 803.037 4769.02 777.883 4808 792 curveto +4841.45 804.115 4872.29 831.69 4891.56 851.741 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3697.11 652.348 moveto +-13.52 -16.315 rlineto +20.74 4.322 rlineto +-7.22 11.993 rlineto +3697.11 652.348 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3700.85 646.444 moveto +3711.04 652.005 3722.04 656.95 3733 660 curveto +3769.56 670.175 4378.33 663.452 4416 668 curveto +4487.99 676.691 4568.21 696.188 4625.67 711.922 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3697.1 652.358 moveto +-13.52 -16.315 rlineto +20.75 4.323 rlineto +-7.23 11.992 rlineto +3697.1 652.358 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3700.83 646.534 moveto +3711.02 652.088 3722.02 657.007 3733 660 curveto +3753.85 665.687 9942.73 652.706 9958 668 curveto +10043.4 753.536 10043.4 854.412 9958 940 curveto +9950.14 947.881 6763.13 947.754 6752 948 curveto +6169.27 960.885 5468.26 997.388 5230.51 1010.357 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3697.08 652.447 moveto +-13.52 -16.318 rlineto +20.74 4.327 rlineto +-7.22 11.991 rlineto +3697.08 652.447 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3700.86 646.419 moveto +3711.04 651.983 3722.04 656.934 3733 660 curveto +3762.37 668.221 4255.01 653.779 4282 668 curveto +4337.85 697.435 4312.42 747.592 4364 784 curveto +4429.16 829.99 4516.94 852.808 4584.71 864.089 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3697.11 652.334 moveto +-13.52 -16.314 rlineto +20.74 4.321 rlineto +-7.22 11.993 rlineto +3697.11 652.334 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.32 489.473 moveto +4290.37 492.192 6244.43 507.013 6847 544 curveto +7340.32 574.281 7459.45 633.595 7953 660 curveto +7964.56 660.618 11277.8 659.807 11286 668 curveto +11322.4 704.499 11322.4 747.51 11286 784 curveto +11275.6 794.452 7046.86 786.904 7033 792 curveto +7000.77 803.848 6971.86 831.477 6953.93 851.613 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.24 496.473 moveto +-19.95 -7.132 rlineto +20.05 -6.868 rlineto +-0.1 14 rlineto +3884.24 496.473 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.53 488.987 moveto +4426.33 489.013 7744.53 491.333 7949 544 curveto +8054.9 571.278 8059.94 633.321 8166 660 curveto +8179.59 663.418 12191.1 658.083 12201 668 curveto +12286.4 753.566 12286.4 854.421 12201 940 curveto +12192.4 948.579 8723.11 947.525 8711 948 curveto +8428.27 959.084 8095.48 989.101 7932.38 1004.925 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.32 495.986 moveto +-20 -6.999 rlineto +20 -7.001 rlineto +0 14 rlineto +3884.32 495.986 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.66 490.396 moveto +4143.93 495.394 5029.32 513.73 5760 544 curveto +6703.71 583.096 6937.96 630.04 7882 660 curveto +7907.13 660.797 8762.75 661.384 8787 668 curveto +8818.64 676.63 8850.61 696.079 8872.96 711.81 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.16 497.388 moveto +-19.86 -7.382 rlineto +20.13 -6.616 rlineto +-0.27 13.998 rlineto +3884.16 497.388 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.82 612.319 moveto +4029.19 612.309 4328.55 618.45 4418 668 curveto +4474.61 699.357 4448.27 754.764 4506 784 curveto +4531.23 796.777 4989.17 780.486 5015 792 curveto +5042.65 804.323 5064.9 831.856 5078.24 851.84 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.45 619.32 moveto +-20.02 -6.957 rlineto +19.99 -7.043 rlineto +0.03 14 rlineto +3885.45 619.32 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.3 617.545 moveto +4058.59 627.5 4491.4 651.052 4854 660 curveto +4879.02 660.617 6632.93 658.284 6656 668 curveto +6677.22 676.937 6695.08 696.355 6706.85 711.996 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.8 624.528 moveto +-19.57 -8.141 rlineto +20.37 -5.836 rlineto +-0.8 13.977 rlineto +3884.8 624.528 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.3 617.415 moveto +4058.6 627.106 4491.42 650.159 4854 660 curveto +4877.71 660.644 5685.88 659.438 5708 668 curveto +5730.96 676.885 5751.38 696.308 5765.09 711.965 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.81 624.398 moveto +-19.58 -8.111 rlineto +20.37 -5.866 rlineto +-0.79 13.977 rlineto +3884.81 624.398 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.35 615.539 moveto +4052.58 621.56 4436.86 638.454 4488 668 curveto +4542.23 699.329 4512.75 754.516 4568 784 curveto +4597.41 799.695 5136.78 780.318 5168 792 curveto +5200.16 804.032 5229.09 831.624 5247.04 851.701 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.87 622.527 moveto +-19.74 -7.701 rlineto 20.23 -6.291 rlineto --0.49 13.991 rlineto -4924.19 622.941 lineto +-0.49 13.992 rlineto +3884.87 622.527 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4924.3 624.978 moveto -5008.25 636.559 5142.37 653.306 5259 660 curveto -5281.85 661.312 8534.84 657.155 8555 668 curveto -8609.49 697.319 8577.58 754.554 8632 784 curveto -8659.51 798.884 9728.49 781.628 9758 792 curveto -9791.76 803.866 9822.9 831.492 9842.35 851.622 curveto +3885.3 617.508 moveto +4058.59 627.387 4491.4 650.795 4854 660 curveto +4872.97 660.481 6202.7 660.209 6220 668 curveto +6239.93 676.977 6256.01 696.173 6266.48 711.726 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4923.18 631.89 moveto --18.84 -9.699 rlineto -20.78 -4.167 rlineto --1.94 13.866 rlineto -4923.18 631.89 lineto +3884.8 624.491 moveto +-19.57 -8.133 rlineto +20.37 -5.844 rlineto +-0.8 13.977 rlineto +3884.8 624.491 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4924.3 624.992 moveto -5008.25 636.584 5142.37 653.34 5259 660 curveto -5319.01 663.427 9528.45 654.393 9587 668 curveto -9623.49 676.481 9661.5 696.056 9688.2 711.87 curveto +3885.3 617.486 moveto +4058.59 627.322 4491.41 650.649 4854 660 curveto +4870.66 660.43 6038.29 662.442 6054 668 curveto +6078.8 676.771 6101.76 696.205 6117.39 711.896 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4923.18 631.904 moveto --18.84 -9.701 rlineto -20.78 -4.165 rlineto --1.94 13.866 rlineto -4923.18 631.904 lineto +3884.8 624.469 moveto +-19.57 -8.127 rlineto +20.37 -5.85 rlineto +-0.8 13.977 rlineto +3884.8 624.469 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4924.7 615.954 moveto -5175.73 624.762 5951.05 650.802 6594 660 curveto -6601.76 660.111 11058.5 662.53 11064 668 curveto -11074.7 678.645 11075.6 929.32 11065 940 curveto -11058 947.032 10362.9 947.179 10353 948 curveto -10232.1 958.071 10093.6 981.975 10007.4 998.329 curveto +3885.17 614.406 moveto +4109.43 618.87 4750.75 634.45 4839 668 curveto +4863.41 677.28 4886.24 696.448 4901.93 711.913 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4924.19 622.94 moveto --19.74 -7.699 rlineto -20.23 -6.292 rlineto --0.49 13.991 rlineto -4924.19 622.94 lineto +3884.97 621.404 moveto +-19.86 -7.39 rlineto +20.13 -6.608 rlineto +-0.27 13.998 rlineto +3884.97 621.404 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4924.3 624.977 moveto -5008.25 636.557 5142.37 653.303 5259 660 curveto -5281.38 661.285 8467.05 657.783 8487 668 curveto -8543.66 697.013 8514.77 754.175 8571 784 curveto -8596.14 797.334 8799.95 783.15 8827 792 curveto -8864.28 804.2 8900.5 831.758 8923.44 851.781 curveto +3885.3 617.534 moveto +4058.59 627.467 4491.4 650.977 4854 660 curveto +4876.88 660.569 6480.56 659.995 6502 668 curveto +6525.58 676.803 6546.85 696.234 6561.2 711.915 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4923.18 631.888 moveto --18.84 -9.698 rlineto -20.78 -4.167 rlineto --1.94 13.865 rlineto -4923.18 631.888 lineto +3884.8 624.517 moveto +-19.57 -8.139 rlineto +20.37 -5.838 rlineto +-0.8 13.977 rlineto +3884.8 624.517 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4904.71 521.25 moveto -4917.52 527.317 4931.41 532.766 4945 536 curveto -5000.67 549.246 5918.21 536.97 5975 544 curveto -6191.53 570.803 6235.39 633.85 6452 660 curveto -6467.9 661.919 11052.7 656.667 11064 668 curveto -11100.4 704.487 11100.1 747.153 11064 784 curveto -11049.6 798.695 10713.8 786.588 10694 792 curveto -10650.1 803.98 10605.3 831.731 10576.6 851.854 curveto +3885.3 617.52 moveto +4058.59 627.424 4491.4 650.88 4854 660 curveto +4874.6 660.518 6318.58 661.082 6338 668 curveto +6362.6 676.763 6385.28 696.199 6400.69 711.891 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4901.48 527.459 moveto --14.6 -15.353 rlineto -20.99 2.894 rlineto --6.39 12.459 rlineto -4901.48 527.459 lineto +3884.8 624.503 moveto +-19.57 -8.136 rlineto +20.37 -5.841 rlineto +-0.8 13.977 rlineto +3884.8 624.503 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4904.71 521.277 moveto -4917.52 527.342 4931.4 532.785 4945 536 curveto -4987.77 546.114 6484.59 532.477 6527 544 curveto -6626.16 570.945 6627.79 633.217 6727 660 curveto -6741.93 664.031 11170.1 657.055 11181 668 curveto -11270.6 757.733 11203.4 874.252 11095 940 curveto -11078.7 949.856 10771.8 945.568 10753 948 curveto -10682.8 957.064 10604.5 976.414 10548.3 992 curveto +3885.3 617.598 moveto +4058.58 627.659 4491.39 651.413 4854 660 curveto +4876.65 660.536 8095.12 662.106 8117 668 curveto +8148.66 676.529 8180.64 695.988 8202.97 711.749 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4901.47 527.486 moveto --14.6 -15.354 rlineto -20.99 2.896 rlineto --6.39 12.458 rlineto -4901.47 527.486 lineto +3884.79 624.58 moveto +-19.56 -8.153 rlineto +20.37 -5.823 rlineto +-0.81 13.976 rlineto +3884.79 624.58 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4904.73 521.187 moveto -4917.54 527.257 4931.42 532.724 4945 536 curveto -5006.68 550.88 5452.72 539.331 5516 544 curveto -5902.83 572.546 5994 633.79 6381 660 curveto -6409.64 661.94 10487.3 660.54 10515 668 curveto -10546.7 676.521 10578.6 695.98 10601 711.744 curveto +3885.3 617.566 moveto +4058.59 627.561 4491.39 651.191 4854 660 curveto +4884.23 660.734 7002.6 657.62 7031 668 curveto +7054.99 676.769 7076.82 696.204 7091.6 711.895 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4901.5 527.397 moveto --14.61 -15.35 rlineto -20.99 2.89 rlineto --6.38 12.46 rlineto -4901.5 527.397 lineto +3884.79 624.548 moveto +-19.56 -8.146 rlineto +20.37 -5.83 rlineto +-0.81 13.976 rlineto +3884.79 624.548 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.924 moveto -4741.71 652.31 4751.83 657.066 4762 660 curveto -4811.63 674.323 8429.94 660.206 8481 668 curveto -8540.77 677.123 8606.8 699.516 8649.92 715.912 curveto +3885.3 617.595 moveto +4058.58 627.65 4491.39 651.392 4854 660 curveto +4875.64 660.514 7950.81 660.189 7971 668 curveto +7993.79 676.818 8013.92 696.247 8027.41 711.924 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.785 moveto --13.07 -16.68 rlineto -20.62 4.889 rlineto --7.55 11.791 rlineto -4728.51 652.785 lineto +3884.79 624.577 moveto +-19.56 -8.153 rlineto +20.37 -5.823 rlineto +-0.81 13.976 rlineto +3884.79 624.577 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.928 moveto -4741.71 652.313 4751.83 657.068 4762 660 curveto -4793.2 668.997 9407.63 656.496 9438 668 curveto -9461.19 676.786 9481.89 696.219 9495.81 711.905 curveto +3885.3 617.588 moveto +4058.58 627.628 4491.39 651.343 4854 660 curveto +4873.59 660.468 7658.33 659.518 7676 668 curveto +7694.85 677.053 7709.24 696.242 7718.4 711.773 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.788 moveto --13.07 -16.68 rlineto -20.62 4.89 rlineto --7.55 11.79 rlineto -4728.51 652.788 lineto +3884.79 624.57 moveto +-19.56 -8.151 rlineto +20.37 -5.825 rlineto +-0.81 13.976 rlineto +3884.79 624.57 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.924 moveto -4741.71 652.31 4751.83 657.066 4762 660 curveto -4786.41 667.046 8398.55 656.096 8421 668 curveto -8476.11 697.221 8451.3 745.03 8500 784 curveto -8543.76 819.012 8602.67 841.975 8649.92 856.076 curveto +3885.3 617.584 moveto +4058.58 627.618 4491.39 651.32 4854 660 curveto +4872.73 660.448 7534.81 660.539 7552 668 curveto +7572.5 676.901 7589.42 696.105 7600.55 711.68 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.784 moveto --13.06 -16.679 rlineto -20.61 4.889 rlineto --7.55 11.79 rlineto -4728.51 652.784 lineto +3884.79 624.567 moveto +-19.56 -8.151 rlineto +20.37 -5.826 rlineto +-0.81 13.977 rlineto +3884.79 624.567 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.927 moveto -4741.71 652.312 4751.83 657.068 4762 660 curveto -4820.06 676.748 9055.98 647.986 9113 668 curveto -9137.82 676.711 9160.78 696.151 9176.4 711.86 curveto +3885.3 617.582 moveto +4058.59 627.61 4491.39 651.302 4854 660 curveto +4872.13 660.435 7450.05 659.361 7466 668 curveto +7483.13 677.279 7494.68 696.447 7501.64 711.912 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.787 moveto --13.07 -16.68 rlineto -20.62 4.89 rlineto --7.55 11.79 rlineto -4728.51 652.787 lineto +3884.79 624.564 moveto +-19.56 -8.15 rlineto +20.37 -5.826 rlineto +-0.81 13.976 rlineto +3884.79 624.564 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.926 moveto -4741.71 652.312 4751.83 657.067 4762 660 curveto -4818.01 676.157 8904.36 647.695 8959 668 curveto -8982.59 676.768 9003.86 696.202 9018.2 711.894 curveto +3885.3 617.577 moveto +4058.59 627.597 4491.39 651.273 4854 660 curveto +4871.23 660.415 7320.11 661.319 7336 668 curveto +7357.22 676.924 7375.09 696.343 7386.86 711.989 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.787 moveto --13.07 -16.68 rlineto -20.62 4.889 rlineto --7.55 11.791 rlineto -4728.51 652.787 lineto +3884.79 624.56 moveto +-19.56 -8.149 rlineto +20.37 -5.827 rlineto +-0.81 13.976 rlineto +3884.79 624.56 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.929 moveto -4741.71 652.314 4751.83 657.069 4762 660 curveto -4796.99 670.087 9971.64 655.945 10006 668 curveto -10030.8 676.707 10053.8 696.148 10069.4 711.857 curveto +3885.3 617.357 moveto +4058.6 626.932 4491.43 649.764 4854 660 curveto +4873.24 660.543 5528.92 661.375 5547 668 curveto +5571.16 676.855 5593.28 696.281 5608.28 711.947 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.79 moveto --13.07 -16.68 rlineto -20.62 4.89 rlineto --7.55 11.79 rlineto -4728.51 652.79 lineto +3884.82 624.341 moveto +-19.58 -8.097 rlineto +20.35 -5.881 rlineto +-0.77 13.978 rlineto +3884.82 624.341 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.931 moveto -4741.71 652.316 4751.83 657.07 4762 660 curveto -4841.85 683.01 10664.8 646.281 10745 668 curveto -10776.4 676.515 10808.1 695.976 10830.3 711.741 curveto +3885.3 617.276 moveto +4058.61 626.685 4491.45 649.206 4854 660 curveto +4869.19 660.452 5386.86 662.431 5401 668 curveto +5423.58 676.892 5443.59 696.096 5457.09 711.674 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.791 moveto --13.07 -16.68 rlineto -20.62 4.89 rlineto --7.55 11.79 rlineto -4728.51 652.791 lineto +3884.83 624.26 moveto +-19.59 -8.078 rlineto +20.35 -5.901 rlineto +-0.76 13.979 rlineto +3884.83 624.26 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.927 moveto -4741.71 652.313 4751.83 657.068 4762 660 curveto -4822.28 677.385 9219.99 646.699 9279 668 curveto -9303.2 676.737 9325.32 696.175 9340.3 711.875 curveto +3885.3 617.451 moveto +4058.59 627.217 4491.41 650.41 4854 660 curveto +4881.82 660.736 5829.4 659.797 5856 668 curveto +5884.16 676.684 5911.63 696.127 5930.64 711.843 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.788 moveto --13.07 -16.68 rlineto -20.62 4.89 rlineto --7.55 11.79 rlineto -4728.51 652.788 lineto +3884.81 624.435 moveto +-19.58 -8.12 rlineto +20.37 -5.858 rlineto +-0.79 13.978 rlineto +3884.81 624.435 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4732.34 646.925 moveto -4741.71 652.311 4751.83 657.067 4762 660 curveto -4815.36 675.397 8707.88 651.79 8761 668 curveto -8789.18 676.599 8816.66 696.051 8835.65 711.792 curveto +3885.3 617.604 moveto +4058.58 627.677 4491.39 651.454 4854 660 curveto +4879 660.589 8431.27 660.108 8455 668 curveto +8481.06 676.668 8505.72 696.113 8522.61 711.833 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -4728.51 652.786 moveto --13.07 -16.68 rlineto -20.62 4.89 rlineto --7.55 11.79 rlineto -4728.51 652.786 lineto +3884.79 624.586 moveto +-19.56 -8.155 rlineto +20.38 -5.821 rlineto +-0.82 13.976 rlineto +3884.79 624.586 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9246.69 770.299 moveto -9257.27 775.891 9268.68 780.884 9280 784 curveto -9318.57 794.623 9604.58 773.399 9640 792 curveto -9664.09 804.648 9680.81 831.825 9690.37 851.646 curveto +3885.31 617.175 moveto +4058.62 626.381 4491.47 648.516 4854 660 curveto +4878.1 660.764 5266.16 657.775 5288 668 curveto +5307.51 677.132 5323.02 696.314 5333.08 711.822 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9243.07 776.291 moveto --13.8 -16.082 rlineto -20.81 3.968 rlineto --7.01 12.114 rlineto -9243.07 776.291 lineto +3884.84 624.16 moveto +-19.6 -8.055 rlineto +20.34 -5.925 rlineto +-0.74 13.98 rlineto +3884.84 624.16 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9083.94 770.93 moveto -9093.48 776.27 9103.74 781.007 9114 784 curveto -9135.87 790.378 9503.86 781.355 9524 792 curveto -9547.92 804.639 9564.32 831.817 9573.65 851.641 curveto +3885.32 616.893 moveto +4058.65 625.529 4491.54 646.585 4854 660 curveto +4884.55 661.131 5100.39 657.229 5129 668 curveto +5152.91 677.003 5174.89 696.196 5189.91 711.742 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9079.99 776.719 moveto --13.29 -16.497 rlineto +3884.87 623.88 moveto +-19.62 -7.989 rlineto +20.32 -5.994 rlineto +-0.7 13.983 rlineto +3884.87 623.88 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.32 616.457 moveto +4149.73 628.292 5001.81 666.531 5005 668 curveto +5025.31 677.339 5042.25 696.502 5053.43 711.95 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.83 623.442 moveto +-19.67 -7.887 rlineto +20.29 -6.099 rlineto +-0.62 13.986 rlineto +3884.83 623.442 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.3 617.602 moveto +4058.58 627.672 4491.39 651.442 4854 660 curveto +4878.24 660.572 8324.04 657.705 8346 668 curveto +8365.22 677.01 8380.16 696.203 8389.76 711.747 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.79 624.585 moveto +-19.56 -8.155 rlineto +20.38 -5.822 rlineto +-0.82 13.977 rlineto +3884.79 624.585 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4972.38 770.232 moveto +4983.05 775.878 4994.57 780.909 5006 784 curveto +5039.36 793.02 5597.27 776.197 5628 792 curveto +5652.49 804.593 5669.59 832.071 5679.33 851.968 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4968.62 776.145 moveto +-13.77 -16.105 rlineto +20.81 4.003 rlineto +-7.04 12.102 rlineto +4968.62 776.145 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6528.19 770.486 moveto +6519.62 775.361 6510.69 780.057 6502 784 curveto +6491.38 788.821 6486.39 785.077 6477 792 curveto +6455.92 807.543 6439.73 833.11 6429.88 851.767 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6524.85 764.326 moveto +20.76 -4.24 rlineto +-13.59 16.262 rlineto +-7.17 -12.022 rlineto +6524.85 764.326 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6564.76 779.049 moveto +6556.1 802.963 6545.58 832.001 6538.4 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6558.24 776.517 moveto +13.39 -16.419 rlineto +-0.23 21.188 rlineto +-13.16 -4.769 rlineto +6558.24 776.517 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6596.45 779.049 moveto +6605.81 802.963 6617.17 832.001 6624.93 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6589.81 781.274 moveto +-0.77 -21.176 rlineto +13.81 16.074 rlineto +-13.04 5.102 rlineto +6589.81 781.274 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6626.95 770.915 moveto +6636.48 776.256 6646.74 780.998 6657 784 curveto +6697 795.705 6994.21 774.423 7032 792 curveto +7058.8 804.464 7079.77 831.968 7092.23 851.907 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6623 776.705 moveto +-13.3 -16.498 rlineto 20.68 4.604 rlineto --7.39 11.893 rlineto -9079.99 776.719 lineto +-7.38 11.894 rlineto +6623 776.705 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9083.99 770.764 moveto -9093.52 776.119 9103.77 780.905 9114 784 curveto -9135.5 790.505 9296.47 780.902 9316 792 curveto -9338.87 804.996 9353.69 832.105 9361.91 851.815 curveto +6626.31 770.613 moveto +6636.02 776.093 6646.51 780.963 6657 784 curveto +6684.7 792.017 7149.9 779.736 7176 792 curveto +7202.43 804.42 7222.75 831.933 7234.76 851.886 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9080.05 776.555 moveto --13.31 -16.494 rlineto -20.69 4.599 rlineto --7.38 11.895 rlineto -9080.05 776.555 lineto +6622.58 776.538 moveto +-13.26 -16.532 rlineto +20.67 4.658 rlineto +-7.41 11.874 rlineto +6622.58 776.538 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9083.96 770.877 moveto -9093.49 776.221 9103.75 780.974 9114 784 curveto -9146.83 793.691 9392.27 775.033 9422 792 curveto -9444.6 804.894 9458.76 832.023 9466.49 851.765 curveto +6532.05 770.766 moveto +6522.48 776.076 6512.22 780.845 6502 784 curveto +6472.01 793.259 6388.41 776.713 6361 792 curveto +6337.51 805.102 6321.38 832.19 6312.2 851.866 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9080.01 776.667 moveto --13.3 -16.497 rlineto -20.69 4.603 rlineto --7.39 11.894 rlineto -9080.01 776.667 lineto +6528.7 764.615 moveto +20.71 -4.444 rlineto +-13.42 16.394 rlineto +-7.29 -11.95 rlineto +6528.7 764.615 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -10139.8 770.195 moveto -10150.1 775.682 10161.1 780.663 10172 784 curveto -10194.8 790.99 10258.2 780.365 10279 792 curveto -10302.7 805.275 10319.5 832.329 10329.2 851.95 curveto +6626.3 770.641 moveto +6636.01 776.118 6646.5 780.981 6657 784 curveto +6692.19 794.121 7283.18 775.769 7316 792 curveto +7341.27 804.495 7359.66 831.993 7370.3 851.921 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -10136.1 776.127 moveto --13.7 -16.112 rlineto -20.8 4.013 rlineto --7.1 12.099 rlineto -10136.1 776.127 lineto +6622.57 776.565 moveto +-13.25 -16.533 rlineto +20.67 4.659 rlineto +-7.42 11.874 rlineto +6622.57 776.565 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -10468.7 760.178 moveto -10482.3 769.428 10499.2 779.043 10516 784 curveto -10550.2 794.081 10803.2 780.606 10837 792 curveto -10872.9 804.109 10907.2 831.685 10928.9 851.738 curveto +6630.8 770.53 moveto +6639.35 775.432 6648.28 780.126 6657 784 curveto +6668.44 789.081 6673.37 785.4 6684 792 curveto +6708.88 807.444 6730.89 833.027 6744.93 851.715 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -9485.11 760.022 moveto -9471.61 769.365 9454.83 779.097 9438 784 curveto -9405.41 793.495 8858.77 780.027 8827 792 curveto -8795.06 804.038 8766.45 831.628 8748.71 851.704 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8756.31 900.061 moveto -8774.72 914.611 8800.65 932.098 8827 940 curveto -8858.85 949.551 9990.85 945.418 10024 948 curveto -10143.9 957.338 10280.4 979.506 10370.7 995.797 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8664.11 851.93 moveto -8602.24 831.559 8506.62 803.38 8421 792 curveto -8391.35 788.059 4142.41 793.342 4114 784 curveto -4099.2 779.135 4085 769.407 4073.75 760.058 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10471 1040 moveto -10471 1057.658 10471 1081.9408 10471 1099.6784 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -10121.9 760.095 moveto -10136.4 769.328 10154.3 778.955 10172 784 curveto -10219.9 797.673 10348 778.688 10396 792 curveto -10440.3 804.289 10485.8 831.976 10514.9 851.999 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9873.21 900.098 moveto -9884.47 925.572 9902.48 966.322 9913.76 991.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9902.52 900.058 moveto -9929.76 914.606 9967.35 932.093 10003 940 curveto -10066.5 954.076 10523.5 939.673 10588 948 curveto -10655.7 956.739 10730.9 976.232 10784.7 991.951 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9747.27 760.098 moveto -9772.92 785.572 9813.97 826.322 9839.66 851.827 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -9780.32 760.114 moveto -9804.46 769.057 9833.21 778.457 9860 784 curveto -9871.57 786.393 9957.97 783.34 9966 792 curveto -10018 848.04 9967.05 947.209 9939.34 991.957 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11002.9 760.348 moveto -10994.9 769.388 10984.6 778.797 10973 784 curveto -10945.6 796.317 10865 778.72 10838 792 curveto -10811.8 804.897 10791.2 832.025 10778.9 851.767 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8983.23 900.076 moveto -9006.57 914.144 9038.42 931.082 9069 940 curveto -9212.32 981.797 9655.09 1004.112 9840.74 1011.836 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8901.13 760.202 moveto -8918.64 769.218 8939.77 778.648 8960 784 curveto -9006.53 796.308 9022.47 776.401 9068 792 curveto -9105.7 804.917 9142.99 832.041 9166.89 851.777 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -265.921 247.275 moveto -319.92 254.543 402.597 269.124 470 296 curveto -497.855 307.107 526.643 325.131 547.635 339.689 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -264.998 254.214 moveto --18.962 -9.459 rlineto -20.721 -4.43 rlineto --1.759 13.889 rlineto -264.998 254.214 lineto +6626.95 776.381 moveto +-13.49 -16.343 rlineto +20.73 4.366 rlineto +-7.24 11.977 rlineto +6626.95 776.381 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -257.434 275.964 moveto -285.843 296.472 320.946 321.813 345.934 339.852 curveto +6370.2 770.242 moveto +6359.89 775.68 6348.87 780.63 6338 784 curveto +6318.19 790.14 6262.97 781.633 6245 792 curveto +6221.86 805.354 6205.75 832.111 6196.48 851.647 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -253.304 281.616 moveto --12.119 -17.382 rlineto -20.314 6.031 rlineto --8.195 11.351 rlineto -253.304 281.616 lineto +6366.95 764.036 moveto +20.83 -3.873 rlineto +-13.87 16.019 rlineto +-6.96 -12.146 rlineto +6366.95 764.036 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -266.296 242.748 moveto -398.508 247.324 721.422 261.753 824 296 curveto -853.092 305.713 882.432 324.631 903.174 339.894 curveto +7158.88 770.708 moveto +7168.76 776.133 7179.4 780.959 7190 784 curveto +7209.5 789.592 7537.08 782.502 7555 792 curveto +7578.9 804.667 7595.31 831.84 7604.64 851.655 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -265.815 249.736 moveto --19.756 -7.662 rlineto -20.222 -6.33 rlineto --0.466 13.992 rlineto -265.815 249.736 lineto +7155.03 776.562 moveto +-13.47 -16.356 rlineto +20.73 4.384 rlineto +-7.26 11.972 rlineto +7155.03 776.562 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -266.398 243.061 moveto -376.466 247.753 612.789 261.609 686 296 curveto -707.012 305.87 725.712 324.569 738.486 339.709 curveto +7158.9 770.627 moveto +7168.78 776.059 7179.41 780.908 7190 784 curveto +7217.1 791.914 7419.28 778.355 7444 792 curveto +7467.28 804.853 7482.74 831.989 7491.41 851.745 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -265.854 250.045 moveto --19.7 -7.803 rlineto -20.267 -6.185 rlineto --0.567 13.988 rlineto -265.854 250.045 lineto +7155.06 776.481 moveto +-13.48 -16.353 rlineto +20.73 4.381 rlineto +-7.25 11.972 rlineto +7155.06 776.481 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -414.026 388.158 moveto -430.669 397.527 451.119 407.242 471 412 curveto -500.082 418.96 4749.14 409.125 4777 420 curveto -4799.59 428.821 4819.45 448.25 4832.72 463.926 curveto +8229.56 780.134 moveto +8227.67 803.836 8225.4 832.3 8223.85 851.827 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1606.49 149.7 moveto -1618.44 155.54 1631.33 160.79 1644 164 curveto -1729.31 185.646 1954.97 149.27 2040 172 curveto -2072.92 180.799 2106.58 200.23 2130.19 215.913 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1603.04 155.8 moveto --14.38 -15.57 rlineto -20.95 3.2 rlineto --6.57 12.37 rlineto -1603.04 155.8 lineto +8222.59 779.479 moveto +8.57 -19.381 rlineto +5.39 20.493 rlineto +-13.96 -1.112 rlineto +8222.59 779.479 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -2010.81 140.23 moveto -2006.9 161.94 2001.08 194.172 1997.17 215.852 curveto +4776.85 766.939 moveto +4796.97 773.889 4819.04 780.323 4840 784 curveto +4900.31 794.578 5332.55 773.778 5391 792 curveto +5429.09 803.873 5466.22 831.497 5489.77 851.625 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.929 moveto -1619.22 279.737 1631.69 284.909 1644 288 curveto -1680.98 297.285 7099.77 279.204 7134 296 curveto -7192.58 324.747 7165.57 382.948 7224 412 curveto -7240.74 420.324 7883.86 406.702 7897 420 curveto -7933.24 456.671 7931.12 497.35 7897 536 curveto -7887.51 546.745 7845.94 537.844 7833 544 curveto -7812.04 553.971 7793.33 572.661 7780.54 587.773 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1604.07 279.93 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.93 lineto +4774.28 773.455 moveto +-16.41 -13.408 rlineto +21.19 0.249 rlineto +-4.78 13.159 rlineto +4774.28 773.455 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.929 moveto -1619.22 279.738 1631.69 284.909 1644 288 curveto -1681.46 297.404 7170.33 278.987 7205 296 curveto -7263.58 324.746 7236.58 382.931 7295 412 curveto -7326.93 427.89 7906.96 400.772 7937 420 curveto -7996.25 457.917 8017.78 545.985 8024.86 587.956 curveto +5078.26 851.777 moveto +5064.94 831.75 5042.71 804.191 5015 792 curveto +4981.79 777.389 3743.4 795.534 3709 784 curveto +3694.38 779.098 3680.39 769.366 3669.33 760.023 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.93 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.93 lineto +5075.96 851.623 moveto +5062.09 832.495 5040.31 806.72 5015 792 curveto +5008.1 787.989 5005.43 788.895 4997.5 788 curveto +4973.51 785.294 3283.49 785.294 3259.5 788 curveto +3218.19 792.661 3182 827.465 3161.32 851.879 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8716.36 760.098 moveto +8722.26 785.572 8731.71 826.322 8737.63 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5754.15 760.167 moveto +5740.89 769.414 5724.48 779.031 5708 784 curveto +5642.45 803.767 5465.6 772.404 5400 792 curveto +5359.62 804.061 5319.33 831.647 5293.64 851.715 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5303.68 900.15 moveto +5329.69 914.738 5365.65 932.235 5400 940 curveto +5442.29 949.56 6917.67 946.225 6961 948 curveto +7240.58 959.455 7569.58 989.199 7731.55 1004.921 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5247.06 851.641 moveto +5229.13 831.523 5200.21 803.906 5168 792 curveto +5129.99 777.947 3747.43 796.873 3709 784 curveto +3694.38 779.102 3680.39 769.371 3669.32 760.027 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7832 1040.234 moveto +7832 1061.943 7832 1094.172 7832 1115.8521 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6117.51 711.829 moveto +6098.8 692.374 6069.13 667.682 6036.5 664 curveto +6006.45 660.61 3889.55 660.61 3859.5 664 curveto +3851.57 664.895 3849.02 664.215 3842 668 curveto +3821.87 678.85 3803.36 696.972 3790.29 711.781 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6452.85 760.193 moveto +6467.39 769.445 6485.3 779.058 6503 784 curveto +6538.65 793.952 6801.37 778.932 6836 792 curveto +6868.32 804.196 6897.58 831.754 6915.77 851.779 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4949.01 900.036 moveto +4968.55 912.093 4992.97 927.01 5015 940 curveto +5045.08 957.74 5079.39 977.208 5105.48 991.863 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4940.68 900.146 moveto +4960.33 914.534 4987.7 931.802 5015 940 curveto +5039.7 947.418 5221.23 947.019 5247 948 curveto +5828.47 970.124 6527.9 1000.527 6769.75 1011.15 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4752.18 760.1 moveto +4770.13 769.315 4790.4 780.471 4808 792 curveto +4835.82 810.23 4865.25 834.213 4885.68 851.709 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4757.87 760.037 moveto +4782.44 769.382 4812.2 779.112 4840 784 curveto +4854.31 786.516 5352.8 781.648 5363 792 curveto +5409.15 838.866 5401.13 886.4 5363 940 curveto +5333.03 982.132 5277.64 1000.806 5230.46 1008.987 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7716.54 711.725 moveto +7707.09 696.894 7693.09 678.768 7676 668 curveto +7669.25 663.747 7666.43 664.895 7658.5 664 curveto +7628.79 660.647 3382.21 660.647 3352.5 664 curveto +3344.57 664.895 3342.01 664.19 3335 668 curveto +3315.05 678.841 3296.81 696.964 3283.95 711.775 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9047.42 760.107 moveto +9039.39 769.344 9028.9 778.969 9017 784 curveto +8988.44 796.069 8487.11 778.927 8459 792 curveto +8432.36 804.387 8411.72 831.907 8399.5 851.87 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +7384.41 711.754 moveto +7372.4 696.935 7355.21 678.811 7336 668 curveto +7329.05 664.088 7326.43 664.895 7318.5 664 curveto +7294.63 661.307 3883.37 661.307 3859.5 664 curveto +3851.57 664.895 3849.02 664.215 3842 668 curveto +3821.87 678.85 3803.36 696.972 3790.29 711.781 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5454.7 711.8 moveto +5441 696.999 5421.7 678.878 5401 668 curveto +5393.94 664.288 5391.43 664.895 5383.5 664 curveto +5355.47 660.837 3380.53 660.837 3352.5 664 curveto +3344.57 664.895 3342.01 664.19 3335 668 curveto +3315.05 678.841 3296.81 696.964 3283.95 711.775 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5596.59 760.216 moveto +5582.23 769.472 5564.53 779.083 5547 784 curveto +5506.44 795.374 5206.37 774.623 5168 792 curveto +5140.59 804.413 5118.66 831.927 5105.53 851.882 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +4725.72 900.127 moveto +4748.78 913.412 4779.27 929.494 4808 940 curveto +4892.63 970.95 4994.03 991.329 5063.75 1002.929 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5964.2 760.098 moveto +5973.25 785.572 5987.72 826.322 5996.77 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8579.43 760.093 moveto +8595.08 769.326 8614.27 778.953 8633 784 curveto +8680.88 796.901 8808.74 776.998 8856 792 curveto +8894.66 804.272 8932.77 831.815 8956.99 851.815 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6957.4 760.118 moveto +6979.35 769.417 7005.94 779.089 7031 784 curveto +7053.52 788.414 7423.84 781.032 7444 792 curveto +7467.36 804.711 7482.8 831.876 7491.44 851.677 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +5240.98 760.244 moveto +5255.15 769.505 5272.63 779.112 5290 784 curveto +5314.44 790.879 5724.15 780.933 5747 792 curveto +5772.82 804.503 5792.18 831.999 5803.51 851.925 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8421.67 760.239 moveto +8431 769.499 8442.97 779.107 8456 784 curveto +8468.17 788.571 12188 791.946 12201 792 curveto +17836 815.536 24808.7 869.229 25495.9 874.57 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8425.77 760.098 moveto +8451.98 785.572 8493.91 826.322 8520.15 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8572.13 900.044 moveto +8588.24 912.667 8609.14 928.115 8629 940 curveto +8662 959.748 8701.03 978.226 8732.17 991.899 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9579.63 696.273 moveto +9589.6 684.992 9601.96 674.076 9616 668 curveto +9645 655.456 27783.8 669.212 27814 660 curveto +27829.8 655.177 27845.3 645.455 27857.7 636.097 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9585.1 700.644 moveto +-17.89 11.353 rlineto +6.9 -20.032 rlineto +10.99 8.679 rlineto +9585.1 700.644 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.929 moveto -1619.22 279.738 1631.69 284.91 1644 288 curveto -1681.93 297.524 7240.89 278.771 7276 296 curveto -7334.58 324.746 7307.58 382.927 7366 412 curveto -7397.59 427.719 7969.24 404.628 8001 420 curveto -8074.8 455.726 8125.09 545.3 8145.62 587.855 curveto +27857.7 636.098 moveto +27845.3 645.455 27829.8 655.178 27814 660 curveto +27774.3 672.101 3945.4 658.457 3905 668 curveto +3869.18 676.462 3832.02 696.039 3805.94 711.858 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.931 moveto --14.14 -15.78 rlineto -20.9 3.516 rlineto --6.76 12.264 rlineto -1604.07 279.931 lineto +3885.15 614.062 moveto +4296.01 619.684 6268.64 646.225 7882 660 curveto +7922.11 660.342 9286.32 662.154 9326 668 curveto +9390.64 677.523 9462.55 701.062 9507.77 717.533 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.05 621.062 moveto +-19.9 -7.274 rlineto +20.09 -6.725 rlineto +-0.19 13.999 rlineto +3885.05 621.062 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.93 moveto -1619.22 279.738 1631.69 284.91 1644 288 curveto -1682.41 297.644 7311.45 278.554 7347 296 curveto -7405.58 324.745 7378.58 382.935 7437 412 curveto -7469.23 428.036 8051.1 407.882 8085 420 curveto -8181.28 454.415 8267.9 545.071 8304.95 587.927 curveto +3885.1 613.933 moveto +4308.27 619.039 6391.9 643.939 8095 660 curveto +8151.28 660.531 9052.6 658.094 9108 668 curveto +9301.09 702.525 9513.88 805.523 9603.01 851.907 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.931 moveto --14.14 -15.78 rlineto -20.9 3.516 rlineto --6.76 12.264 rlineto -1604.07 279.931 lineto +3885.01 620.933 moveto +-19.92 -7.241 rlineto +20.09 -6.758 rlineto +-0.17 13.999 rlineto +3885.01 620.933 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.93 moveto -1619.22 279.739 1631.69 284.91 1644 288 curveto -1684.33 298.123 7593.67 277.686 7631 296 curveto -7689.58 324.743 7662.47 383.161 7721 412 curveto -7742.59 422.638 9430.01 418.1 9454 420 curveto -9790.24 446.63 9868.55 500.76 10204 536 curveto -10267.3 542.65 10283.8 536.575 10347 544 curveto -10636.3 577.976 10702.7 626.502 10992 660 curveto -11008.8 661.945 11132.4 655.731 11144 668 curveto -11179.5 705.401 11180.4 747.487 11144 784 curveto -11137.8 790.172 8642.68 791.187 8634 792 curveto -8497.26 804.807 8339.9 838.549 8253.12 858.85 curveto +28179.9 627.121 moveto +28117.5 638.578 28024.7 653.806 27943 660 curveto +27911.6 662.38 9844.09 658.768 9814 668 curveto +9786.02 676.583 9758.83 696.037 9740.05 711.782 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.931 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.931 lineto +28178.8 620.189 moveto +21 3.21 rlineto +-18.4 10.552 rlineto +-2.6 -13.762 rlineto +28178.8 620.189 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7764.06 656.275 moveto -7764.52 675.008 7765.05 696.185 7765.43 711.852 curveto +9576.32 760.044 moveto +9587.38 769.39 9601.37 779.12 9616 784 curveto +9633.03 789.681 12183 791.916 12201 792 curveto +17836 818.236 24808.7 869.5 25495.9 874.59 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7757.07 656.4 moveto -6.5 -20.166 rlineto -7.49 19.822 rlineto --13.99 0.344 rlineto -7757.07 656.4 lineto +9942.07 752.547 moveto +9984.76 763.769 10045.6 777.966 10100 784 curveto +10158 790.435 12142.6 791.707 12201 792 curveto +17836 820.245 24808.7 869.702 25495.9 874.606 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9703.45 760.098 moveto +9690.71 785.572 9670.34 826.322 9657.59 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2957.47 839.312 moveto +2981.13 821.327 3012.33 801.385 3044 792 curveto +3059.24 787.483 12189.8 795.246 12201 784 curveto +12237.4 747.529 12236.7 705.238 12201 668 curveto +12158.1 623.184 11207.4 614.643 10982.4 613.246 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +2961.68 844.908 moveto +-20.01 6.974 rlineto +11.29 -17.93 rlineto +8.72 10.956 rlineto +2961.68 844.908 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7809.27 647.333 moveto -7816.95 652.057 7825.01 656.484 7833 660 curveto -7846.81 666.079 7852.93 660.461 7866 668 curveto -7884.95 678.928 7901.83 697.155 7913.49 711.84 curveto +3885.21 605.068 moveto +4059.73 589.79 4498.04 553.601 4865.67 541.333 curveto +4906.45 539.972 10701.8 536.758 10742.3 541.333 curveto +10747.6 541.93 10749.5 541.244 10754 544 curveto +10771.8 554.773 10786.8 572.899 10797.2 587.729 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7805.09 652.959 moveto --12.78 -16.897 rlineto -20.53 5.235 rlineto --7.75 11.662 rlineto -7805.09 652.959 lineto +3885.79 612.044 moveto +-20.53 -5.219 rlineto +19.31 -8.727 rlineto +1.22 13.946 rlineto +3885.79 612.044 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7806.67 647.407 moveto -7815.01 652.468 7823.97 656.985 7833 660 curveto -7864.66 670.573 7953.15 653.063 7983 668 curveto -8001.84 677.429 8016.74 696.372 8026.41 711.716 curveto +3885.15 614.118 moveto +4296.01 620.022 6268.63 647.774 7882 660 curveto +8127.55 661.861 9846.7 656.792 10092 668 curveto +10362.6 680.366 10685.8 715.569 10806 729.36 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7802.74 653.204 moveto --12.64 -17.003 rlineto -20.49 5.406 rlineto --7.85 11.597 rlineto -7802.74 653.204 lineto +3885.04 621.117 moveto +-19.89 -7.287 rlineto +20.09 -6.712 rlineto +-0.2 13.999 rlineto +3885.04 621.117 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7822.9 648.955 moveto -7828.79 654.653 7834.04 661.006 7838 668 curveto -7871.49 727.21 7865.96 811.455 7860.72 851.765 curveto +25815 275.958 moveto +25827.8 285.01 25838.6 293.05 25841 296 curveto +25876.8 339.718 25845.7 381.17 25893 412 curveto +25911.6 424.126 27477.3 404.247 27493 420 curveto +27529.4 456.546 27529.4 499.536 27493 536 curveto +27482.5 546.491 10419.5 540.957 10405 544 curveto +10364.7 552.447 10322 572.138 10292 587.999 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7818.31 654.25 moveto --11.02 -18.097 rlineto -19.9 7.273 rlineto --8.88 10.824 rlineto -7818.31 654.25 lineto +25810.7 281.449 moveto +-12.4 -17.19 rlineto +20.4 5.712 rlineto +-8 11.478 rlineto +25810.7 281.449 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8031.81 780.134 moveto -8027.86 803.836 8023.12 832.3 8019.86 851.827 curveto +25807.6 275.575 moveto +25815.4 280.424 25823.7 284.827 25832 288 curveto +25859.2 298.352 25871.7 281.621 25897 296 curveto +25953.7 328.236 25928.5 383.151 25987 412 curveto +26007.1 421.911 27585.2 404.11 27601 420 curveto +27637.4 456.546 27637.4 499.536 27601 536 curveto +27590.7 546.343 10768.4 541.324 10754 544 curveto +10708.8 552.411 10660.2 572.105 10625.9 587.978 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8024.96 778.675 moveto -10.19 -18.577 rlineto -3.62 20.879 rlineto --13.81 -2.302 rlineto -8024.96 778.675 lineto +25803.6 281.302 moveto +-12.5 -17.111 rlineto +20.4 5.581 rlineto +-7.9 11.53 rlineto +25803.6 281.302 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8030.09 636.234 moveto -8032.05 657.943 8034.96 690.172 8036.91 711.852 curveto +25806.4 275.581 moveto +25814.5 280.603 25823.2 285.062 25832 288 curveto +25853.8 295.278 26018.8 285.025 26039 296 curveto +26094.5 326.105 26065 382.828 26121 412 curveto +26140.2 421.992 27656.6 417.165 27678 420 curveto +27878.5 446.509 27918 506.043 28118 536 curveto +28129.1 537.664 28312.2 535.903 28320 544 curveto +28355.7 581.17 28355.1 622.263 28320 660 curveto +28188.8 800.979 26783.5 777.057 26591 784 curveto +26537.1 785.945 11106.9 781.444 11054 792 curveto +10996.7 803.439 10935.2 831.605 10895.8 851.957 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -7809.71 760.076 moveto -7829.41 769.306 7853.3 778.935 7876 784 curveto -7900.63 789.496 8079.83 782.002 8103 792 curveto -8131.99 804.507 8156.5 832.003 8171.43 851.927 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8017.3 760.097 moveto -8007.65 768.981 7995.62 778.342 7983 784 curveto -7960.46 794.103 7949.63 780.075 7928 792 curveto -7902.76 805.915 7882.46 832.566 7870.13 851.924 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8148.79 913.445 moveto -8135.35 924.026 8119.46 934.266 8103 940 curveto -8040.44 961.79 7868.02 927.585 7805 948 curveto -7777.55 956.892 7750.81 976.096 7732.22 991.674 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -8144.6 907.816 moveto -19.77 -7.641 rlineto --10.69 18.298 rlineto --9.08 -10.657 rlineto -8144.6 907.816 lineto +25802.3 281.241 moveto +-12.4 -17.182 rlineto +20.4 5.699 rlineto +-8 11.483 rlineto +25802.3 281.241 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8148.82 913.549 moveto -8135.38 924.136 8119.49 934.354 8103 940 curveto -8050.96 957.816 7660.78 932.497 7608 948 curveto -7578.15 956.769 7548.42 976.203 7527.73 991.894 curveto +10820 636.234 moveto +10827.5 657.943 10838.6 690.172 10846 711.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8144.64 907.918 moveto -19.75 -7.66 rlineto --10.66 18.308 rlineto --9.09 -10.648 rlineto -8144.64 907.918 lineto +10799.4 636.117 moveto +10794.8 645.689 10790.3 657.088 10788 668 curveto +10777.5 718.468 10772.1 734.961 10788 784 curveto +10796.4 809.989 10815.4 834.768 10830.8 851.888 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10833.4 711.807 moveto +10819.5 697.009 10799.9 678.888 10779 668 curveto +10771.9 664.312 10769.4 664.895 10761.5 664 curveto +10714.3 658.675 3969.69 658.675 3922.5 664 curveto +3878.95 668.914 3834.24 692.934 3804.79 711.898 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10854 760.098 moveto +10854 785.572 10854 826.322 10854 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10902.2 713.999 moveto +10942 697.838 11000.5 676.823 11054 668 curveto +11082.8 663.243 13130.9 670.953 13158 660 curveto +13170.2 655.052 13181.1 645.437 13189.5 636.186 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.3 241.141 moveto +19421.6 242.348 22429.9 251.989 22615 296 curveto +22651.5 304.686 22689.7 324.129 22716.6 339.844 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967 248.141 moveto +-20 -7.052 rlineto +20.1 -6.948 rlineto +-0.1 14 rlineto +18967 248.141 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8272.14 905.268 moveto -8305.64 917.261 8344.12 932.134 8378 948 curveto -8405.77 961.005 8435.76 978.244 8458.42 991.979 curveto +18967.4 241.039 moveto +19475.3 241.464 23188.2 246.27 23416 296 curveto +23455.6 304.654 23497.6 324.211 23527.2 339.974 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8269.61 911.797 moveto --16.54 -13.243 rlineto -21.19 0.037 rlineto --4.65 13.206 rlineto -8269.61 911.797 lineto +18967.2 248.039 moveto +-20 -7.016 rlineto +20 -6.984 rlineto +0 14 rlineto +18967.2 248.039 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8214.51 916.545 moveto -8231.46 940.909 8252.6 971.304 8266.88 991.827 curveto +18967.3 241.086 moveto +19455.7 241.904 22905.9 249.324 23118 296 curveto +23157.4 304.672 23199.1 324.227 23228.5 339.985 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8208.74 920.514 moveto --5.67 -20.416 rlineto -17.17 12.421 rlineto --11.5 7.995 rlineto -8208.74 920.514 lineto +18967.2 248.086 moveto +-20 -7.032 rlineto +20 -6.968 rlineto +0 14 rlineto +18967.2 248.086 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8157.46 916.191 moveto -8139.06 940.613 8116.01 971.204 8100.46 991.827 curveto +13813.9 397.326 moveto +13827 403.389 13841.2 408.817 13855 412 curveto +13895.1 421.21 25655.7 407.844 25695 420 curveto +25722.8 428.593 25749.7 448.045 25768.2 463.788 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8151.97 911.857 moveto -17.62 -11.759 rlineto --6.44 20.185 rlineto --11.18 -8.426 rlineto -8151.97 911.857 lineto +13810.4 403.409 moveto +-14.7 -15.231 rlineto +21 2.72 rlineto +-6.3 12.511 rlineto +13810.4 403.409 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8148.36 913.315 moveto -8134.97 923.791 8119.23 934.002 8103 940 curveto -8051.2 959.142 8030.68 928.528 7979 948 curveto -7954.02 957.411 7930.35 976.566 7914.02 991.994 curveto +25752.6 283.602 moveto +25745 322.457 25741.6 378.73 25774 412 curveto +25788.5 426.867 25848.2 411.317 25867 420 curveto +25887.9 429.643 25906.2 448.567 25918.5 463.85 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -8144.11 907.742 moveto -19.8 -7.54 rlineto --10.78 18.243 rlineto --9.02 -10.703 rlineto -8144.11 907.742 lineto +25745.8 282.017 moveto +11.2 -17.952 rlineto +2.4 21.053 rlineto +-13.6 -3.101 rlineto +25745.8 282.017 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -12019.2 900.246 moveto -12008.1 912.361 11994.1 927.266 11981 940 curveto -11962.4 958.095 11940.3 977.47 11923.4 991.993 curveto +25838.3 525.254 moveto +25844.9 531.24 25851.3 537.592 25857 544 curveto +25869 557.516 25880.3 574.423 25888.6 587.871 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11896 900.098 moveto -11896 925.572 11896 966.322 11896 991.827 curveto +25833.7 530.496 moveto +-10.5 -18.401 rlineto +19.7 7.833 rlineto +-9.2 10.568 rlineto +25833.7 530.496 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25839.7 522.741 moveto +25848.7 527.95 25858.4 532.689 25868 536 curveto +25900.5 547.203 25914.8 527.566 25945 544 curveto +25963.1 553.848 25977.4 572.548 25986.7 587.695 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1556 284.275 moveto -1556 303.008 1556 324.185 1556 339.852 curveto +25835.9 528.647 moveto +-13.1 -16.593 rlineto +20.6 4.754 rlineto +-7.5 11.839 rlineto +25835.9 528.647 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25792 512.234 moveto +25791.2 533.943 25789.8 566.172 25788.9 587.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1549 284.234 moveto +25754.9 512.18 moveto +25737.3 521.553 25715.8 531.265 25695 536 curveto +25653.8 545.374 13579 539.765 13537 544 curveto +13425.3 555.26 13295.5 587.317 13237.6 602.642 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 240.952 moveto +19494.7 240.596 23472.2 239.782 23715 296 curveto +23752.4 304.65 23791.5 324.207 23819 339.971 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.3 247.952 moveto +-20 -6.986 rlineto +20 -7.014 rlineto +0 14 rlineto +18967.3 247.952 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.6 241.133 moveto +19551.9 242.536 24392 255.376 24533 296 curveto +24563.1 304.669 24593.1 324.114 24614 339.834 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.132 moveto +-20 -7.047 rlineto +20.1 -6.953 rlineto +-0.1 14 rlineto +18967.1 248.132 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.4 241.104 moveto +19540.3 242.201 24211.1 252.467 24346 296 curveto +24373.1 304.74 24399.2 324.178 24417.1 339.877 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.3 248.104 moveto +-19.9 -7.038 rlineto +20 -6.962 rlineto +-0.1 14 rlineto +18967.3 248.104 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.7 241.174 moveto +19529.1 242.924 24002.4 258.043 24133 296 curveto +24162.9 304.684 24192.6 324.128 24213.3 339.843 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.3 248.173 moveto +-20 -7.062 rlineto +20 -6.938 rlineto +0 14 rlineto +18967.3 248.173 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.6 241.137 moveto +19519.2 242.506 23848 254.559 23973 296 curveto +23999.4 304.768 24024.7 324.203 24042 339.894 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.2 248.136 moveto +-20 -7.049 rlineto +20 -6.951 rlineto +0 14 rlineto +18967.2 248.136 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +24404.1 388.175 moveto +24387.1 397.547 24366.2 407.26 24346 412 curveto +24319.7 418.159 8810.02 419.811 8783 420 curveto +6754.49 434.186 4260.85 478.763 3864.26 486.002 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12709.2 151.1 moveto +12677.2 171.76 12637.2 197.559 12608.9 215.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12705.4 145.2 moveto +20.6 -4.97 rlineto +-13 16.73 rlineto +-7.6 -11.76 rlineto +12705.4 145.2 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26046 140.23 moveto +26046 161.94 26046 194.17 26046 215.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3375.16 400.345 moveto +3382.33 405.099 3390.06 409.271 3398 412 curveto +3406.5 414.922 8318.22 480.073 8802.65 486.492 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3370.89 405.888 moveto +-11.69 -17.674 rlineto +20.16 6.528 rlineto +-8.47 11.146 rlineto +3370.89 405.888 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8842.42 532.275 moveto +8843.03 551.008 8843.73 572.185 8844.24 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +8835.42 532.453 moveto +6.34 -20.219 rlineto +7.65 19.76 rlineto +-13.99 0.459 rlineto +8835.42 532.453 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25720.9 275.577 moveto +25712.7 280.6 25703.9 285.06 25695 288 curveto +25652.1 302.145 25535.6 284.217 25492 296 curveto +25455.6 305.829 25418 327.606 25393.5 343.678 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25717.3 269.614 moveto +20.4 -5.559 rlineto +-12.5 17.097 rlineto +-7.9 -11.538 rlineto +25717.3 269.614 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.905 moveto +13083.1 280.87 13091.5 285.226 13100 288 curveto +13122 295.16 16415.2 285.784 16436 296 curveto +16494.6 324.774 16467.4 383.256 16526 412 curveto +16544.1 420.891 22318.8 419.751 22339 420 curveto +23503.5 434.368 24932.7 478.175 25177.5 485.847 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.514 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.514 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.147 moveto +19574.7 242.75 24789.9 257.616 24943 296 curveto +24977.4 304.632 25012.9 324.191 25037.7 339.96 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.147 moveto +-20 -7.053 rlineto +20 -6.947 rlineto +0 14 rlineto +18967.1 248.147 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25344.8 388.315 moveto +25337.3 396.152 25328.5 404.741 25320 412 curveto +25297.9 430.867 25271.1 449.763 25250 463.869 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.906 moveto +13083.1 280.871 13091.5 285.227 13100 288 curveto +13123 295.464 16556.3 285.351 16578 296 curveto +16636.6 324.771 16609.4 383.272 16668 412 curveto +16683.1 419.411 26352.1 408.14 26364 420 curveto +26439.7 495.152 26440 584.172 26365 660 curveto +26350.4 674.752 25637.2 660.166 25618 668 curveto +25596.2 676.891 25577.3 696.095 25564.7 711.674 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.515 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.515 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.906 moveto +13083.1 280.871 13091.5 285.227 13100 288 curveto +13123.4 295.616 16626.9 285.134 16649 296 curveto +16707.6 324.77 16680.4 383.272 16739 412 curveto +16754.1 419.399 26407.1 408.112 26419 420 curveto +26494.4 495.456 26493.9 584.026 26419 660 curveto +26408.3 670.824 25885.8 661.642 25872 668 curveto +25852.3 677.079 25836.5 696.266 25826.2 711.79 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.515 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.515 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.906 moveto +13083.1 280.872 13091.5 285.227 13100 288 curveto +13123.9 295.768 16697.4 284.917 16720 296 curveto +16778.6 324.769 16751.4 383.272 16810 412 curveto +16825.1 419.387 26462.1 408.131 26474 420 curveto +26549.4 495.456 26548.8 583.928 26474 660 curveto +26465 669.193 26021.9 663.052 26010 668 curveto +25988.4 676.973 25969.8 696.17 25957.4 711.724 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.515 moveto +-12 -17.455 rlineto +20.3 6.154 rlineto +-8.3 11.301 rlineto +13071.2 281.515 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.907 moveto +13083.1 280.872 13091.5 285.227 13100 288 curveto +13124.4 295.919 16768 284.7 16791 296 curveto +16849.6 324.768 16822.4 383.272 16881 412 curveto +16896 419.374 26517.2 408.151 26529 420 curveto +26604.4 495.456 26603.4 583.573 26529 660 curveto +26517.4 671.906 26246 663.628 26230 668 curveto +26197.3 676.907 26163.9 696.328 26140.5 711.978 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.516 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.516 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.907 moveto +13083.1 280.872 13091.5 285.228 13100 288 curveto +13125.3 296.223 16910 282.669 16933 296 curveto +16984.5 325.818 16948.4 382.214 17000 412 curveto +17014.5 420.363 26617.2 408.174 26629 420 curveto +26688 479.081 26640.9 907.106 26606 940 curveto +26591.3 953.825 25899 941.178 25880 948 curveto +25855.4 956.833 25832.7 976.261 25817.3 991.933 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.516 moveto +-12 -17.455 rlineto +20.3 6.154 rlineto +-8.3 11.301 rlineto +13071.2 281.516 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25548.9 780.134 moveto +25549.5 803.836 25550.1 832.3 25550.5 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25541.9 780.246 moveto +6.6 -20.148 rlineto +7.4 19.843 rlineto +-14 0.305 rlineto +25541.9 780.246 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25594.3 771.333 moveto +25601.9 776.057 25610 780.484 25618 784 curveto +25631.8 790.079 25638.3 783.781 25651 792 curveto +25673.9 806.864 25691.9 832.805 25702.9 851.739 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25590.1 776.959 moveto +-12.8 -16.897 rlineto +20.5 5.235 rlineto +-7.7 11.662 rlineto +25590.1 776.959 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25591.7 771.407 moveto +25600 776.468 25609 780.985 25618 784 curveto +25649.7 794.573 25739 775.551 25768 792 curveto +25791.1 805.106 25806.6 832.193 25815.3 851.868 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25587.7 777.204 moveto +-12.6 -17.003 rlineto +20.5 5.406 rlineto +-7.9 11.597 rlineto +25587.7 777.204 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25607.9 772.93 moveto +25613.8 778.632 25619.1 784.993 25623 792 curveto +25659.3 856.715 25652 948.997 25646 991.687 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25603.4 778.225 moveto +-11.1 -18.101 rlineto +19.9 7.281 rlineto +-8.8 10.82 rlineto +25603.4 778.225 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25862.7 914.083 moveto +25888.5 938.832 25921.7 970.606 25943.8 991.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25857.7 918.99 moveto +-9.6 -18.892 rlineto +19.3 8.784 rlineto +-9.7 10.108 rlineto +25857.7 918.99 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25814.8 760.098 moveto +25816.9 785.572 25820.1 826.322 25822.2 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25584.1 900.275 moveto +25605.2 913.961 25633.6 930.411 25661 940 curveto +25683.1 947.718 25691.6 938.616 25713 948 curveto +25736.4 958.256 25758.8 976.724 25774.6 991.676 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25809.5 900.261 moveto +25799.6 914.123 25785.1 930.766 25768 940 curveto +25746.3 951.719 25735.2 937.246 25713 948 curveto +25691.9 958.182 25673 976.856 25659.9 991.908 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25746.6 1050.13 moveto +25735.9 1055.735 25724.4 1060.776 25713 1064 curveto +25671.5 1075.744 25560 1058.409 25519 1072 curveto +25491.6 1081.089 25464.9 1100.2746 25446.3 1115.7956 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25743.4 1043.899 moveto +20.9 -3.851 rlineto +-13.9 16.004 rlineto +-7 -12.153 rlineto +25743.4 1043.899 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25746.7 1050.316 moveto +25736 1055.906 25724.4 1060.895 25713 1064 curveto +25671.1 1075.393 25363.7 1059.663 25322 1072 curveto +25292.2 1080.833 25262.4 1100.2607 25241.7 1115.9332 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25743.5 1044.085 moveto +20.8 -3.86 rlineto +-13.9 16.011 rlineto +-6.9 -12.151 rlineto +25743.5 1044.085 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25846.7 1050.161 moveto +25857.3 1055.764 25868.7 1060.796 25880 1064 curveto +25925.4 1076.869 26046.7 1059.022 26092 1072 curveto +26123.5 1081.021 26155.5 1100.2134 26178.1 1115.754 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25843.1 1056.156 moveto +-13.8 -16.078 rlineto +20.8 3.961 rlineto +-7 12.117 rlineto +25843.1 1056.156 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25853 1050.052 moveto +25861.9 1054.931 25871.1 1059.742 25880 1064 curveto +25888.6 1068.146 25891.6 1067.473 25900 1072 curveto +25923.6 1084.677 25948.5 1101.9244 25967.1 1115.7449 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25849.3 1055.997 moveto +-14 -15.898 rlineto +20.8 3.692 rlineto +-6.8 12.206 rlineto +25849.3 1055.997 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25797 1060.275 moveto +25797 1079.008 25797 1100.1846 25797 1115.8521 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25790 1060.234 moveto 7 -20 rlineto 7 20 rlineto -14 0 rlineto -1549 284.234 lineto +25790 1060.234 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1560.61 408.275 moveto -1562.61 427.008 1564.86 448.185 1566.53 463.852 curveto +25740.7 1049.831 moveto +25731.5 1054.78 25722.1 1059.67 25713 1064 curveto +25704.4 1068.124 25701.3 1067.257 25693 1072 curveto +25671.1 1084.468 25648.7 1101.8919 25632.1 1115.8457 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1553.63 408.864 moveto -4.85 -20.63 rlineto -9.08 19.146 rlineto --13.93 1.484 rlineto -1553.63 408.864 lineto +25737.4 1043.661 moveto +20.8 -3.592 rlineto +-14 15.831 rlineto +-6.8 -12.239 rlineto +25737.4 1043.661 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1503.29 368.903 moveto -1436.91 375.04 1328.53 389.539 1304 420 curveto -1271.66 460.154 1268.21 498.888 1304 536 curveto -1320.98 553.608 1502.39 532.535 1524 544 curveto -1541.69 553.389 1554.62 572.335 1562.74 587.691 curveto +25846.7 1050.336 moveto +25857.3 1055.925 25868.7 1060.908 25880 1064 curveto +25927.6 1077.001 26277.2 1056.424 26324 1072 curveto +26350.6 1080.857 26376.1 1100.2827 26393.7 1115.948 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1503.09 361.895 moveto -20.52 5.267 rlineto --19.33 8.682 rlineto --1.19 -13.949 rlineto -1503.09 361.895 lineto +25843.1 1056.328 moveto +-13.8 -16.083 rlineto +20.8 3.969 rlineto +-7 12.114 rlineto +25843.1 1056.328 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1569.76 512.234 moveto -1570.47 533.943 1571.53 566.172 1572.24 587.852 curveto +3527.47 398.535 moveto +3537.78 404.089 3548.91 409.008 3560 412 curveto +3595.85 421.676 8870.32 414.193 8907 420 curveto +8933.59 424.211 9278.5 538.136 9428.79 587.998 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1550.05 512.028 moveto -1542.16 521.781 1532.99 533.335 1525 544 curveto -1514.26 558.325 1502.71 574.78 1493.74 587.797 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1298.39 140.15 moveto -1311.4 148.32 1326.56 157.17 1341 164 curveto -1396.39 190.201 1463.52 212.169 1507.87 225.424 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1523.98 378.353 moveto -1501.36 388.41 1470.79 403.293 1446 420 curveto -1426.89 432.879 1407.44 450.122 1393 463.889 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1588.27 387.156 moveto -1604.28 396.822 1624.35 407.064 1644 412 curveto -1711.16 428.869 6562.07 406.527 6630 420 curveto -6672.47 428.423 6717.79 448.004 6749.83 463.835 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1538.92 388.179 moveto -1531.78 397.956 1523.42 409.488 1516 420 curveto -1496.73 447.29 1444.95 513.646 1431 544 curveto -1404.62 601.378 1389.82 674.946 1383.57 711.789 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1125.67 140.23 moveto -1128.16 161.94 1131.86 194.172 1134.34 215.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1603.49 608.721 moveto -1740.79 598.586 2315.5 557.51 2788 544 curveto -2841.34 542.475 6577.17 543.52 6630 536 curveto -6668.63 530.5 6710.94 518.103 6742.77 507.421 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1568.24 636.234 moveto -1563.79 657.943 1557.19 690.172 1552.74 711.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1554.23 636.278 moveto -1545.9 645.079 1535.4 654.33 1524 660 curveto -1503.85 670.023 1494.82 659.466 1474 668 curveto -1448.6 678.412 1423.46 696.868 1405.58 711.777 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6843.26 464.86 moveto -6882.39 448.875 6938.52 428.643 6990 420 curveto -7001.32 418.099 8634.9 420.137 8643 412 curveto -8679.37 375.457 8679.43 332.476 8643 296 curveto -8634.41 287.403 1655.79 290.957 1644 288 curveto -1625.02 283.237 1605.65 273.521 1589.93 264.153 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6793.76 512.234 moveto -6794.47 533.943 6795.53 566.172 6796.24 587.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1607.69 273.927 moveto -1619.22 279.735 1631.69 284.908 1644 288 curveto -1675.43 295.897 6280.89 284.007 6311 296 curveto -6333.2 304.843 6352.48 324.27 6365.33 339.94 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1604.07 279.928 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.928 lineto +3523.59 404.373 moveto +-13.61 -16.243 rlineto +20.77 4.212 rlineto +-7.16 12.031 rlineto +3523.59 404.373 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.69 273.926 moveto -1619.22 279.735 1631.69 284.907 1644 288 curveto -1674.54 295.672 6148.49 285.034 6178 296 curveto -6201.59 304.766 6222.86 324.201 6237.21 339.893 curveto +3701.31 397.931 moveto +3712.97 403.74 3725.57 408.911 3738 412 curveto +3810.45 430.012 9040.36 402.794 9113 420 curveto +9225.18 446.57 9233.25 507.701 9345 536 curveto +9398.24 549.481 9539.57 527.648 9592 544 curveto +9620.71 552.953 9649.12 572.152 9668.97 587.712 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.927 moveto --14.14 -15.779 rlineto -20.9 3.516 rlineto --6.76 12.263 rlineto -1604.07 279.927 lineto +3697.57 403.864 moveto +-14.22 -15.712 rlineto +20.91 3.417 rlineto +-6.69 12.295 rlineto +3697.57 403.864 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -6385.19 408.275 moveto -6386.57 427.008 6388.14 448.185 6389.29 463.852 curveto +12966.7 252.43 moveto +12893.8 264.029 12774.6 281.213 12671 288 curveto +12659.7 288.742 9411.01 287.966 9403 296 curveto +9366.59 332.5 9366.98 375.117 9403 412 curveto +9416.16 425.477 9724.13 414.049 9742 420 curveto +9768.81 428.927 9794.6 448.345 9812.37 463.99 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -6378.2 408.695 moveto -5.51 -20.461 rlineto -8.46 19.431 rlineto --13.97 1.03 rlineto -6378.2 408.695 lineto +12966 245.447 moveto +20.9 3.727 rlineto +-18.6 10.095 rlineto +-2.3 -13.822 rlineto +12966 245.447 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -6425.61 386.235 moveto -6443.63 395.699 6464.37 407.522 6482 420 curveto -6500.53 433.114 6519.58 450.186 6533.84 463.816 curveto +12966.7 251.908 moveto +12893.7 263.071 12774.5 279.895 12671 288 curveto +12143.6 329.3 10443.5 356.254 10060.2 361.895 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -6362.71 339.781 moveto -6349.64 324.972 6331.13 306.85 6311 296 curveto -6303.98 292.215 6301.43 292.895 6293.5 292 curveto -6261.54 288.393 1693.46 288.393 1661.5 292 curveto -1628.01 295.779 1597.09 320.453 1577.5 339.877 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6281.71 388.234 moveto -6305.73 409.943 6341.39 442.172 6365.39 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -6254.86 388.234 moveto -6253.79 409.943 6252.2 442.172 6251.14 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1607.68 273.931 moveto -1619.22 279.739 1631.69 284.911 1644 288 curveto -1665.59 293.419 8034.88 286.471 8055 296 curveto -8074.04 305.019 8088.7 324.211 8098.08 339.752 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1604.07 279.932 moveto --14.14 -15.78 rlineto -20.89 3.517 rlineto --6.75 12.263 rlineto -1604.07 279.932 lineto +12966 244.922 moveto +20.9 3.859 rlineto +-18.7 9.977 rlineto +-2.2 -13.836 rlineto +12966 244.922 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.68 273.931 moveto -1619.22 279.739 1631.69 284.91 1644 288 curveto -1686.25 298.605 7876.58 279.745 7917 296 curveto -7939.01 304.851 7958.01 324.277 7970.64 339.944 curveto +18852.7 241.607 moveto +18415.9 246.208 15568.6 275.717 13254 288 curveto +13229.9 288.128 9804.79 288.14 9782 296 curveto +9756.77 304.7 9733.24 324.142 9717.2 339.853 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.932 moveto --14.14 -15.78 rlineto -20.9 3.517 rlineto --6.76 12.263 rlineto -1604.07 279.932 lineto +18852.9 234.605 moveto +20.1 6.788 rlineto +-19.9 7.211 rlineto +-0.2 -13.999 rlineto +18852.9 234.605 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.68 273.932 moveto -1619.22 279.74 1631.69 284.911 1644 288 curveto -1689.32 299.372 8327.4 282.066 8372 296 curveto -8399.55 304.606 8426.17 324.057 8444.54 339.796 curveto +18852.7 241.61 moveto +18415.9 246.228 15568.6 275.842 13254 288 curveto +13228.7 288.133 9634.25 288.777 9610 296 curveto +9581.17 304.585 9552.85 324.039 9533.23 339.783 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.933 moveto --14.14 -15.78 rlineto -20.89 3.517 rlineto --6.75 12.263 rlineto -1604.07 279.933 lineto +18852.9 234.607 moveto +20.1 6.788 rlineto +-19.9 7.211 rlineto +-0.2 -13.999 rlineto +18852.9 234.607 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.68 273.931 moveto -1619.22 279.74 1631.69 284.911 1644 288 curveto -1731.8 310.036 8074.53 272.67 8162 296 curveto -8193.89 304.505 8226.14 323.967 8248.69 339.735 curveto +15652.2 450.477 moveto +15632.6 434.584 15607.2 419.014 15580.5 416 curveto +15540.3 411.469 9801.65 411.469 9761.5 416 curveto +9753.57 416.895 9750.63 415.558 9744 420 curveto +9727.91 430.78 9715.52 448.906 9707.35 463.734 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.932 moveto --14.14 -15.78 rlineto -20.89 3.517 rlineto --6.75 12.263 rlineto -1604.07 279.932 lineto +15657.1 445.465 moveto +10.4 18.461 rlineto +-19.7 -7.946 rlineto +9.3 -10.515 rlineto +15657.1 445.465 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -202.615 284.275 moveto -199.851 303.008 196.727 324.185 194.415 339.852 curveto +25564 241.63 moveto +25050.9 246.417 21692.7 277.177 18963 288 curveto +18947.2 288.062 9902.18 289.13 9888 296 curveto +9869.31 305.054 9855.22 324.243 9846.27 339.774 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -195.728 282.998 moveto -9.844 -18.764 rlineto -4.006 20.808 rlineto --13.85 -2.044 rlineto -195.728 282.998 lineto +25563.9 234.63 moveto +20.1 6.813 rlineto +-19.9 7.186 rlineto +-0.2 -13.999 rlineto +25563.9 234.63 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1057.53 106.18 moveto -911.869 84.87 549.732 34.97 244.5 18 curveto -199.237 15.48 182.774 -2.81 142.5 18 curveto -112.666 33.42 92.8691 68.2 82.2841 91.9 curveto +9871.08 401.253 moveto +9876.45 405.338 9882.15 409.075 9888 412 curveto +9903.82 419.917 9912.02 410.582 9927 420 curveto +9943.95 430.659 9957.37 449.098 9966.18 463.937 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1058.66 99.26 moveto -18.76 9.84 rlineto --20.8 4.02 rlineto -2.04 -13.86 rlineto -1058.66 99.26 lineto +9866.31 406.377 moveto +-10.56 -18.373 rlineto +19.71 7.78 rlineto +-9.15 10.593 rlineto +9866.31 406.377 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1057.73 125.71 moveto -879.047 149.56 385.957 215.38 246.301 234.021 curveto +9507 408.275 moveto +9507 427.008 9507 448.185 9507 463.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1056.92 118.76 moveto -20.75 4.29 rlineto --18.89 9.58 rlineto --1.86 -13.87 rlineto -1056.92 118.76 lineto +9500 408.234 moveto +7 -20 rlineto +7 20 rlineto +-14 0 rlineto +9500 408.234 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1057.27 228.685 moveto -869.035 204.332 401.146 143.8 245.369 123.65 curveto +9815.28 388.109 moveto +9805.94 397.345 9793.98 406.97 9781 412 curveto +9745.25 425.855 9474.07 415.428 9436 420 curveto +9197.02 448.701 9146.28 509.947 8907 536 curveto +8880.49 538.886 1253.16 535.179 1228 544 curveto +1203.18 552.701 1180.22 572.143 1164.6 587.854 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1058.3 221.759 moveto -18.93 9.509 rlineto --20.73 4.376 rlineto -1.8 -13.885 rlineto -1058.3 221.759 lineto +9854.81 388.479 moveto +9863.91 397.542 9875.46 406.932 9888 412 curveto +9926.77 427.665 10035.9 408.01 10076 420 curveto +10106.4 429.096 10137 448.281 10158.6 463.8 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9854.22 388.229 moveto +9863.37 397.488 9875.13 407.097 9888 412 curveto +9930.32 428.123 13108.2 400.404 13149 420 curveto +13167.9 429.049 13182.2 448.239 13191.4 463.771 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9835.19 388.234 moveto +9835.37 409.943 9835.63 442.172 9835.81 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9813.5 388.176 moveto +9804.27 396.853 9792.89 406.042 9781 412 curveto +9765.96 419.538 9758.06 410.765 9744 420 curveto +9727.73 430.682 9715.2 448.923 9707.03 463.678 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9858.52 463.926 moveto +9878.98 444.533 9911.14 419.877 9945.5 416 curveto +9989.47 411.039 13087.5 411.039 13131.5 416 curveto +13139.4 416.895 13142.2 415.747 13149 420 curveto +13166.1 430.768 13180.1 448.894 13189.5 463.725 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9871.6 512.169 moveto +9888.06 521.54 9908.3 531.254 9928 536 curveto +9956.76 542.928 26941.3 531.227 26968 544 curveto +26986.9 553.031 27001.2 572.222 27010.4 587.76 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9666.15 503.699 moveto +9645.29 514.271 9616.99 529.215 9593 544 curveto +9570.84 557.66 9546.89 574.566 9528.58 587.978 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9696 512.234 moveto +9696 533.943 9696 566.172 9696 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10060.1 361.223 moveto +10383.3 349.732 11661.4 305.861 12712.5 292 curveto +12752 291.479 15520.2 287.567 15559.5 292 curveto +15592.3 295.706 15622.3 320.394 15641.3 339.841 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +10060.1 366.339 moveto +10544.6 374.756 13149 420 13149 420 curveto +13167.8 429.19 13182.2 448.366 13191.4 463.858 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9374.21 900.246 moveto +9363.13 912.361 9349.12 927.266 9336 940 curveto +9317.36 958.095 9295.34 977.47 9278.39 991.993 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9251 900.098 moveto +9251 925.572 9251 966.322 9251 991.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13065.7 280.067 moveto +13081.2 299.772 13099.5 322.999 13112.8 339.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13060.1 284.281 moveto +-6.8 -20.047 rlineto +17.9 11.389 rlineto +-11.1 8.658 rlineto +13060.1 284.281 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -98.6275 140.22 moveto -107.022 147.81 116.4 156.27 125 164 curveto -144.343 181.377 166.26 200.941 182.856 215.73 curveto +13154.9 405.559 moveto +13166.4 424.935 13179.6 447.422 13189.3 463.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -245.27 120.55 moveto -379.267 129.66 751.014 153.87 1061 164 curveto -1080.91 164.65 1759.24 165.32 1778 172 curveto -1802.78 180.827 1825.74 200.255 1841.38 215.93 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1753.08 275.726 moveto -1761.24 280.774 1770.05 285.203 1779 288 curveto -1830.95 304.236 9564.76 280.723 9617 296 curveto -9646.26 304.558 9675.15 324.014 9695.19 339.767 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1748.83 281.291 moveto --12.37 -17.207 rlineto -20.4 5.74 rlineto --8.03 11.467 rlineto -1748.83 281.291 lineto +13148.8 409.016 moveto +-4.1 -20.782 rlineto +16.2 13.667 rlineto +-12.1 7.115 rlineto +13148.8 409.016 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -12559.5 140.23 moveto -12564.7 161.94 12572.3 194.172 12577.5 215.852 curveto +13079.5 376.777 moveto +13056.5 384.881 13031.6 398.253 13018 420 curveto +12990.7 463.71 12982.6 498.519 13018 536 curveto +13028.7 547.327 13144.3 536.555 13158 544 curveto +13175.6 553.572 13188.5 572.502 13196.7 587.806 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1753.08 275.726 moveto -1761.24 280.774 1770.05 285.204 1779 288 curveto -1832.27 304.648 9760.91 287.032 9816 296 curveto -9877.54 306.018 9945.7 332.142 9984.74 348.652 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1748.83 281.291 moveto --12.37 -17.207 rlineto -20.4 5.74 rlineto --8.03 11.467 rlineto -1748.83 281.291 lineto +13077.7 370.007 moveto +21.2 0.928 rlineto +-17.1 12.476 rlineto +-4.1 -13.404 rlineto +13077.7 370.007 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1753.08 275.726 moveto -1761.24 280.774 1770.05 285.204 1779 288 curveto -1833.93 305.165 10009.5 285.061 10066 296 curveto -10113.5 305.204 10164.7 327.824 10197.7 344.24 curveto +13203.8 512.234 moveto +13204.5 533.943 13205.5 566.172 13206.2 587.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1748.83 281.291 moveto --12.37 -17.207 rlineto -20.4 5.74 rlineto --8.03 11.467 rlineto -1748.83 281.291 lineto +13184 512.028 moveto +13176.2 521.781 13167 533.335 13159 544 curveto +13148.3 558.325 13136.7 574.78 13127.7 587.797 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +12932.2 140.23 moveto +12954.8 161.94 12988.3 194.17 13010.9 215.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13122 388.234 moveto +13113.7 409.943 13101.3 442.172 13092.9 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13163.3 370.002 moveto +13231.8 380.357 13397.3 403.851 13537 412 curveto +13559 413.283 19861.1 413.057 19882 420 curveto +19908.1 428.655 19932.7 448.101 19949.6 463.826 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13098.8 367.122 moveto +13064.6 371.295 13012 383.63 12987 420 curveto +12924 511.439 12961.6 655.933 12979.8 711.844 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13189.3 140.23 moveto +13186.8 161.94 13183.1 194.17 13180.7 215.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13237.6 602.649 moveto +13295.5 587.334 13425.3 555.293 13537 544 curveto +13580.8 539.567 19839.2 546.528 19882 536 curveto +19901.3 531.241 19921.1 521.526 19937.2 512.157 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13202.2 636.234 moveto +13197.8 657.943 13191.2 690.172 13186.7 711.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13188.2 636.278 moveto +13179.9 645.079 13169.4 654.33 13158 660 curveto +13137.9 670.023 13129.3 660.624 13108 668 curveto +13077.1 678.714 13044.9 697.149 13021.7 711.973 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19969 463.902 moveto +19962.2 421.842 19941.3 333.633 19882 296 curveto +19862.1 283.375 13122.4 295.265 13100 288 curveto +13085 283.145 13070.6 273.419 13059.2 264.068 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19972.8 512.234 moveto +19973.5 533.943 19974.5 566.172 19975.2 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +454.039 399.108 moveto +462.935 404.26 472.465 408.886 482 412 curveto +533.654 428.869 551.552 405.791 604 420 curveto +639.021 429.488 675.665 448.53 701.763 463.897 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +449.934 404.791 moveto +-13.062 -16.685 rlineto +20.616 4.898 rlineto +-7.554 11.787 rlineto +449.934 404.791 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1753.08 275.727 moveto -1761.24 280.774 1770.05 285.204 1779 288 curveto -1835.37 305.615 10225.8 285.763 10284 296 curveto -10331.8 304.407 10383.5 324.102 10420 339.976 curveto +772.043 463.912 moveto +801.705 444.956 846.714 420.94 890.5 416 curveto +935.817 410.887 27113.2 410.887 27158.5 416 curveto +27198 420.458 27237.4 444.707 27263 463.849 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1748.83 281.291 moveto --12.37 -17.207 rlineto -20.4 5.74 rlineto --8.03 11.467 rlineto -1748.83 281.291 lineto +3884.64 489.282 moveto +4457.06 491.578 8128.74 508.029 8236 544 curveto +8262.23 552.795 8287.17 572.227 8301.28 587.911 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.45 496.282 moveto +-19.97 -7.08 rlineto +20.03 -6.92 rlineto +-0.06 14 rlineto +3884.45 496.282 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11545 531.971 moveto -11541.9 550.779 11538.4 572.1 11535.8 587.852 curveto +8272.13 587.911 moveto +8252.17 572.227 8227.23 552.795 8201 544 curveto +8092.87 507.737 4362.23 491.312 3864.6 489.229 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11538 530.839 moveto -10.2 -18.605 rlineto -3.7 20.869 rlineto --13.9 -2.264 rlineto -11538 530.839 lineto +3885.15 614.148 moveto +4296 620.207 6268.62 648.623 7882 660 curveto +7925.29 660.305 10956.5 659.511 10999 668 curveto +11041.2 676.445 11086.3 696.023 11118.1 711.848 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.04 621.147 moveto +-19.89 -7.295 rlineto +20.1 -6.703 rlineto +-0.21 13.998 rlineto +3885.04 621.147 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11592.9 525.708 moveto -11615.4 545.894 11642.7 570.321 11662.2 587.852 curveto +11162.5 760.098 moveto +11164.2 785.572 11166.8 826.322 11168.5 851.827 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11588.1 530.8 moveto --10.2 -18.566 rlineto -19.6 8.145 rlineto --9.4 10.421 rlineto -11588.1 530.8 lineto +11203.7 851.824 moveto +11224.2 835.534 11248.6 811.745 11260 784 curveto +11279.6 736.315 11296.4 704.474 11260 668 curveto +11250.6 658.558 3585.43 664.861 3573 660 curveto +3560.44 655.088 3549.11 645.478 3540.33 636.221 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3555.28 649.656 moveto +3560.78 653.842 3566.74 657.498 3573 660 curveto +3625.94 681.15 4031.63 650.866 4086 668 curveto +4113.91 676.795 4141.11 696.227 4159.91 711.91 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3550.48 654.754 moveto +-10.11 -18.62 rlineto +19.52 8.249 rlineto +-9.41 10.371 rlineto +3550.48 654.754 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11490.4 521.926 moveto -11478.1 528.922 11465.5 536.476 11454 544 curveto -11433.1 557.638 11410.7 574.545 11393.6 587.962 curveto +3555.31 649.597 moveto +3560.8 653.791 3566.75 657.466 3573 660 curveto +3604.72 672.866 3848.09 658.584 3881 668 curveto +3912.12 676.903 3943.54 696.324 3965.49 711.976 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11487 515.808 moveto -20.8 -3.664 rlineto --14 15.879 rlineto --6.8 -12.215 rlineto -11487 515.808 lineto +3550.51 654.694 moveto +-10.12 -18.622 rlineto +19.52 8.252 rlineto +-9.4 10.37 rlineto +3550.51 654.694 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11389.8 388.234 moveto -11369.8 409.943 11345 442.172 11331.6 463.852 curveto +13075.4 275.911 moveto +13083.1 280.876 13091.5 285.23 13100 288 curveto +13135.5 299.533 18447.2 280 18481 296 curveto +18500 305.021 18514.7 324.213 18524.1 339.754 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11350.4 466.29 moveto -11371 444.65 11397.2 410.772 11411 388.234 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11443.5 388.234 moveto -11467.4 409.943 11502.8 442.172 11526.6 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11672.6 388.234 moveto -11646.1 409.943 11606.7 442.172 11580.3 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11569 388.234 moveto -11565.3 409.943 11559.7 442.172 11556 463.852 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11297.4 489.441 moveto -11049.6 493.533 9118.6 524.93 7553 536 curveto -7288.28 537.872 3052.62 536.487 2788 544 curveto -2315.5 557.415 1740.79 598.562 1603.49 608.717 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -11302.8 512.005 moveto -11294.2 521.655 11284.3 533.141 11276 544 curveto -11265.2 558.118 11254 574.718 11245.5 587.862 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1162.87 152.32 moveto -1170.14 157.07 1177.98 161.26 1186 164 curveto -1231.63 179.61 1574.32 156.53 1620 172 curveto -1646.2 180.873 1671.15 200.297 1688.27 215.958 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1158.47 157.77 moveto --11.82 -17.58 rlineto -20.21 6.37 rlineto --8.39 11.21 rlineto -1158.47 157.77 lineto +13071.2 281.52 moveto +-12 -17.454 rlineto +20.3 6.153 rlineto +-8.3 11.301 rlineto +13071.2 281.52 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1216.25 220.013 moveto -1290.84 202.301 1405.93 177.78 1507.5 168 curveto -1535.48 165.31 1732.57 164.85 1760.5 168 curveto -1793.13 171.68 1822.8 196.374 1841.51 215.829 curveto +13075.4 275.911 moveto +13083.1 280.876 13091.5 285.23 13100 288 curveto +13168.9 310.353 18245.3 272.985 18314 296 curveto +18339.9 304.667 18364.2 324.111 18380.9 339.833 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1217.89 226.82 moveto --21.09 -2.123 rlineto -17.81 -11.488 rlineto -3.28 13.611 rlineto -1217.89 226.82 lineto +13071.2 281.52 moveto +-12 -17.455 rlineto +20.3 6.154 rlineto +-8.3 11.301 rlineto +13071.2 281.52 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1736.46 264.084 moveto -1748.46 273.438 1763.52 283.163 1779 288 curveto -1791.77 291.99 9473.55 286.538 9483 296 curveto -9519.44 332.474 9519.44 375.526 9483 412 curveto -9473.38 421.628 1656.71 415.141 1644 420 curveto -1621 428.789 1600.59 448.222 1586.89 463.907 curveto +25721.6 275.525 moveto +25713.2 280.657 25704.2 285.168 25695 288 curveto +25648.7 302.288 18768.4 279.152 18723 296 curveto +18699.4 304.759 18678.1 324.194 18663.8 339.889 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1893.83 264.142 moveto -1908.62 273.507 1926.91 283.224 1945 288 curveto -1959.98 291.955 10860 285.037 10871 296 curveto -10907.4 332.472 10906.6 374.663 10871 412 curveto -10774 513.874 8482.61 532.052 8342 536 curveto -8217.6 539.492 7346.03 533.838 7222 544 curveto -7080.37 555.605 6914.52 586.965 6838.68 602.308 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1893.83 264.141 moveto -1908.62 273.507 1926.91 283.224 1945 288 curveto -1959.92 291.937 10820.1 285.086 10831 296 curveto -10867.4 332.472 10867.4 375.529 10831 412 curveto -10819.7 423.283 1658.9 414.307 1644 420 curveto -1621 428.787 1600.59 448.22 1586.88 463.906 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1753.08 275.727 moveto -1761.24 280.774 1770.05 285.204 1779 288 curveto -1808.03 297.07 10507.9 291.329 10538 296 curveto -10591.9 304.382 10651 324.08 10692.8 339.961 curveto -stroke -1.0 setlinewidth -0.6588 0 0.2118 setrgbcolor -newpath -1748.83 281.292 moveto --12.37 -17.207 rlineto -20.4 5.739 rlineto --8.03 11.468 rlineto -1748.83 281.292 lineto +25717.7 269.709 moveto +20.4 -5.621 rlineto +-12.5 17.135 rlineto +-7.9 -11.514 rlineto +25717.7 269.709 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1592.9 202.442 moveto -1607.57 190.332 1625.38 178.34 1644 172 curveto -1676.88 160.81 11330.8 119.73 11943.5 117.13 curveto +13075.4 275.908 moveto +13083.1 280.873 13091.5 285.228 13100 288 curveto +13154.4 305.661 17162.5 278.794 17217 296 curveto +17244.3 304.623 17270.7 324.072 17288.8 339.806 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1597.4 207.808 moveto --19.6 8.059 rlineto -10.3 -18.521 rlineto -9.3 10.462 rlineto -1597.4 207.808 lineto +13071.2 281.517 moveto +-12 -17.455 rlineto +20.3 6.154 rlineto +-8.3 11.301 rlineto +13071.2 281.517 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11932.5 153.6 moveto -11925.9 159.66 11919.2 165.94 11913 172 curveto -11898.5 186.188 11882.9 202.788 11870.8 215.915 curveto +13075.4 275.908 moveto +13083.1 280.873 13091.5 285.228 13100 288 curveto +13126.7 296.679 17121.1 283.057 17146 296 curveto +17202 325.083 17171.9 382.95 17228 412 curveto +17258.4 427.761 27061.3 406.92 27093 420 curveto +27176.7 454.561 27243.1 545.143 27270.9 587.954 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11927.9 148.3 moveto +13071.2 281.517 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.517 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25778.2 283.347 moveto +25794.5 329.043 25821.9 397.276 25845 412 curveto +25862.6 423.21 27329.2 410.941 27348 420 curveto +27366.8 429.076 27381.2 448.263 27390.4 463.788 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25771.5 285.4 moveto +0.1 -21.19 rlineto +13.1 16.602 rlineto +-13.2 4.588 rlineto +25771.5 285.4 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27252.6 493.067 moveto +27155.4 502.879 26896 527.657 26679 536 curveto +26656.9 536.849 1248.85 536.699 1228 544 curveto +1203.18 552.692 1180.21 572.134 1164.59 587.848 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27290.7 512.234 moveto +27289.4 533.943 27287.6 566.172 27286.3 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +27265.4 587.787 moveto +27252.1 572.981 27233.3 554.859 27213 544 curveto +27206 540.24 27203.4 540.895 27195.5 540 curveto +27150.7 534.949 1290.27 534.949 1245.5 540 curveto +1212.87 543.682 1183.2 568.374 1164.49 587.829 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.909 moveto +13083.1 280.874 13091.5 285.228 13100 288 curveto +13128.4 297.217 17368.3 292.689 17398 296 curveto +17492.6 306.562 17601.1 335.111 17657.8 351.329 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.518 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.518 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +17736.1 378.523 moveto +17771.6 390.028 17825.6 405.663 17874 412 curveto +17938.1 420.387 27113.6 403.249 27176 420 curveto +27207.7 428.504 27239.6 447.965 27262 463.734 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.65 489.179 moveto +4476.9 490.685 8395.8 502.22 8509 544 curveto +8584.49 571.861 8572.38 632.497 8648 660 curveto +8659.72 664.264 12232.2 659.169 12241 668 curveto +12277.4 704.496 12277 747.118 12241 784 curveto +12227.8 797.516 11918.4 784.617 11901 792 curveto +11871.9 804.338 11847.4 831.867 11832.5 851.846 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.6 496.179 moveto +-19.98 -7.05 rlineto +20.02 -6.95 rlineto +-0.04 14 rlineto +3884.6 496.179 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.8 489.067 moveto +4484.59 489.695 8491.64 495.699 8605 544 curveto +8671.5 572.334 8652.37 631.973 8719 660 curveto +8741.8 669.591 12263.5 650.489 12281 668 curveto +12317.4 704.496 12316.8 746.9 12281 784 curveto +12263.7 801.922 12079.7 781.707 12057 792 curveto +12029.3 804.586 12006.7 832.065 11993.1 851.965 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.52 496.066 moveto +-19.99 -7.02 rlineto +20.01 -6.98 rlineto +-0.02 14 rlineto +3884.52 496.066 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.26 488.966 moveto +4488.22 488.795 8574.89 489.652 8688 544 curveto +8748.06 572.862 8722.81 631.409 8783 660 curveto +8805.19 670.541 12303.6 650.607 12321 668 curveto +12357.4 704.496 12348.5 740.404 12321 784 curveto +12291.4 830.901 12230.3 854.134 12185.1 865.302 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.26 495.966 moveto +-20 -6.993 rlineto +20 -7.007 rlineto +0 14 rlineto +3884.26 495.966 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3885.09 614.095 moveto +4308.27 620.053 6391.86 648.715 8095 660 curveto +8119.27 660.161 11566.3 662.942 11590 668 curveto +11629.7 676.458 11671.6 696.035 11701.2 711.856 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +3884.99 621.094 moveto +-19.9 -7.281 rlineto +20.1 -6.717 rlineto +-0.2 13.998 rlineto +3884.99 621.094 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6626.27 770.728 moveto +6635.99 776.198 6646.49 781.035 6657 784 curveto +6687.94 792.725 11254 788.514 11286 792 curveto +11405.4 805.021 11542.2 840.149 11614.4 860.286 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +6622.54 776.65 moveto +-13.25 -16.535 rlineto +20.67 4.663 rlineto +-7.42 11.872 rlineto +6622.54 776.65 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11700.7 720.839 moveto +11590.2 682.884 11272.7 579.365 10999 544 curveto +10955.1 538.327 9446.87 550.417 9405 536 curveto +9325.32 508.56 9334.61 447.642 9255 420 curveto +9120.66 373.355 4425.83 365.803 3864.67 365.066 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11753.7 760.098 moveto +11767.7 785.572 11790.2 826.322 11804.2 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11781.3 745.29 moveto +11814.9 753.49 11863.2 768.299 11900 792 curveto +11924.8 807.927 11947.3 833.179 11961.9 851.651 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11781.5 740.735 moveto +11855.5 748.106 12009.4 766.087 12056 792 curveto +12081.5 806.174 12102.6 832.504 12115.7 851.718 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +11728.3 760.098 moveto +11714.3 785.572 11691.8 826.322 11677.8 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29665.2 512.002 moveto +29633 521.466 29593.9 531.301 29558 536 curveto +29447.7 550.425 13647.7 532.848 13537 544 curveto +13425.3 555.251 13295.5 587.313 13237.6 602.641 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +29735 512.234 moveto +29735 533.943 29735 566.172 29735 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.897 moveto +13083.1 280.864 13091.5 285.222 13100 288 curveto +13161.5 308.01 15365.7 275.563 15427 296 curveto +15453.1 304.684 15477.7 324.127 15494.6 339.843 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.507 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.507 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.899 moveto +13083.1 280.865 13091.5 285.223 13100 288 curveto +13165.4 309.294 15512 273.354 15577 296 curveto +15602 304.72 15625.3 324.159 15641.1 339.865 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.508 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.508 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15568.2 399.373 moveto +15578.1 406.152 15588.4 413.255 15598 420 curveto +15618.4 434.323 15641 450.777 15658.7 463.795 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15564.1 405.056 moveto +-12.6 -17.022 rlineto +20.4 5.437 rlineto +-7.8 11.585 rlineto +15564.1 405.056 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15518.3 388.234 moveto +15519.6 409.943 15521.4 442.172 15522.7 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15495 339.902 moveto +15475 320.493 15443.4 295.828 15409.5 292 curveto +15358.3 286.223 13605.8 287.666 13554.5 292 curveto +13407 304.45 13233.6 340.882 13163.2 356.619 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15667.3 388.234 moveto +15672.3 409.943 15679.7 442.172 15684.7 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +15700.1 377.075 moveto +15724.9 386.201 15757 400.505 15781 420 curveto +15796 432.158 15808.9 449.767 15817.8 463.882 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.913 moveto +13083.1 280.878 13091.5 285.231 13100 288 curveto +13143.1 301.98 19583.4 277.992 19625 296 curveto +19645.5 304.883 19662.4 324.088 19673.6 339.669 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.522 moveto +-12 -17.455 rlineto +20.3 6.154 rlineto +-8.3 11.301 rlineto +13071.2 281.522 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25721.6 275.521 moveto +25713.2 280.654 25704.2 285.166 25695 288 curveto +25662.2 298.141 20784.3 294.742 20750 296 curveto +20411.2 308.423 20004.6 345.136 19866 358.265 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25717.7 269.705 moveto +20.4 -5.621 rlineto +-12.5 17.135 rlineto +-7.9 -11.514 rlineto +25717.7 269.705 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19568.1 388.234 moveto +19572.9 409.943 19580.1 442.172 19584.9 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +19518.6 490.226 moveto +19142 496.629 17347.2 526.302 15879 536 curveto +15853.6 536.168 1252.01 535.591 1228 544 curveto +1203.18 552.695 1180.22 572.137 1164.6 587.85 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.496 moveto +19446.6 245.613 22825.1 274.282 25568 288 curveto +25586.9 288.094 28267.9 290.606 28286 296 curveto +28314.8 304.596 28343.1 324.048 28362.8 339.79 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.494 moveto +-19.9 -7.172 rlineto +20.1 -6.828 rlineto +-0.2 14 rlineto +18967.1 248.494 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.49 moveto +19446.6 245.555 22825.1 273.888 25568 288 curveto +25602.4 288.177 28010.3 289.096 28044 296 curveto +28085.3 304.465 28129.2 324.041 28160.2 339.86 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.487 moveto +-19.9 -7.169 rlineto +20.1 -6.83 rlineto +-0.2 13.999 rlineto +18967.1 248.487 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28199.5 408.275 moveto +28198.4 427.008 28197.2 448.185 28196.3 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28192.5 407.801 moveto +8.2 -19.567 rlineto +5.8 20.369 rlineto +-14 -0.802 rlineto +28192.5 407.801 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28363.3 339.681 moveto +28340.4 320.434 28305.1 296.126 28268.5 292 curveto +28216.7 286.16 20819.6 290.031 20767.5 292 curveto +20421.3 305.095 20005.6 344.932 19865.6 359.008 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28244.7 388.214 moveto +28256 396.628 28266.8 407.26 28273 420 curveto +28295.7 466.291 28309.4 499.539 28273 536 curveto +28256.4 552.603 1250.16 536.242 1228 544 curveto +1203.18 552.692 1180.21 572.134 1164.59 587.848 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.907 moveto +13083.1 280.873 13091.5 285.228 13100 288 curveto +13125.8 296.375 16979.7 284.049 17004 296 curveto +17062.6 324.764 17035.4 383.272 17094 412 curveto +17124.8 427.086 26935.4 399.646 26963 420 curveto +27016.3 459.374 27022.9 546.316 27022.8 587.928 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.516 moveto +-12 -17.454 rlineto +20.3 6.153 rlineto +-8.3 11.301 rlineto +13071.2 281.516 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.908 moveto +13083.1 280.873 13091.5 285.228 13100 288 curveto +13126.3 296.527 17050.2 283.832 17075 296 curveto +17133.6 324.763 17106.4 383.272 17165 412 curveto +17195.7 427.062 26987.9 403.826 27018 420 curveto +27085.4 456.145 27123.1 545.51 27137.8 587.933 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.517 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.517 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.911 moveto +13083.1 280.875 13091.5 285.23 13100 288 curveto +13165.5 309.266 17994.3 275.442 18060 296 curveto +18087.5 304.612 18114.2 324.063 18132.5 339.8 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.52 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.52 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.91 moveto +13083.1 280.875 13091.5 285.229 13100 288 curveto +13130.7 297.974 17720.1 291.111 17752 296 curveto +17806.9 304.401 17867 324.097 17909.7 339.972 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.519 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.519 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18903.6 284.275 moveto +18900.9 303.008 18897.7 324.185 18895.4 339.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18896.7 282.998 moveto +9.9 -18.764 rlineto +4 20.808 rlineto +-13.9 -2.044 rlineto +18896.7 282.998 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.4 114.41 moveto +13714.9 103.36 16485.2 37.92 18740.5 18 curveto +18785.4 17.6 18801.6 -2.47 18841.5 18 curveto +18871.5 33.39 18891.7 68.18 18902.5 91.89 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.5 121.41 moveto +-20.2 -6.52 rlineto +19.9 -7.48 rlineto +0.3 14 rlineto +13257.5 121.41 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.7 118.4 moveto +13860.4 131.26 18413.2 228.401 18872.6 238.203 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.5 125.4 moveto +-19.9 -7.43 rlineto +20.2 -6.57 rlineto +-0.3 14 rlineto +13257.5 125.4 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.8 237.266 moveto +13900.2 223.303 18217.9 129.46 18739.5 118.12 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.9 244.265 moveto +-20.1 -6.564 rlineto +19.8 -7.433 rlineto +0.3 13.997 rlineto +13257.9 244.265 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18911.6 140.23 moveto +18911.3 161.94 18910.7 194.17 18910.4 215.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18816.9 140.09 moveto +18829.1 149.44 18844.4 159.17 18860 164 curveto +18906.3 178.29 25785.3 155.98 25831 172 curveto +25855.8 180.7 25878.8 200.144 25894.4 215.854 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9111.64 743.947 moveto +9190.52 755.064 9353.33 776.376 9492 784 curveto +9520.97 785.593 26178.7 782.075 26206 792 curveto +26238.7 803.891 26268.1 831.81 26286.2 851.989 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +9110.51 750.858 moveto +-18.81 -9.756 rlineto +20.79 -4.104 rlineto +-1.98 13.86 rlineto +9110.51 750.858 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.501 moveto +19446.6 245.654 22825.1 274.563 25568 288 curveto +25588.3 288.099 28469.8 289.509 28489 296 curveto +28569.8 323.307 28561.3 384.155 28642 412 curveto +28655.1 416.514 29130.3 410.139 29140 420 curveto +29373.9 657.637 29419.7 575.008 28320 660 curveto +28293.5 662.047 26432.2 659.523 26407 668 curveto +26381.2 676.701 26356.8 696.142 26340.1 711.853 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.498 moveto +-19.9 -7.173 rlineto +20.1 -6.826 rlineto +-0.2 13.999 rlineto +18967.1 248.498 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.503 moveto +19446.6 245.673 22825.1 274.691 25568 288 curveto +25589 288.102 28572.7 287.811 28592 296 curveto +28658.3 324.066 28638.9 383.511 28705 412 curveto +28718.2 417.696 29212.9 409.746 29223 420 curveto +29491.1 692.266 29208.4 595.342 28824 660 curveto +28361.9 737.729 26836.5 736.328 26531.4 735.242 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.5 moveto +-19.9 -7.174 rlineto +20.1 -6.825 rlineto +-0.2 13.999 rlineto +18967.1 248.5 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +26315.8 760.098 moveto +26313.4 785.572 26309.6 826.322 26307.2 851.827 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25721.1 277.124 moveto +25696.9 297.421 25667.5 322.152 25646.5 339.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25716.6 271.754 moveto +19.8 -7.52 rlineto +-10.8 18.233 rlineto +-9 -10.713 rlineto +25716.6 271.754 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18966.6 117.03 moveto +19455 117.39 23120.5 121.73 26093 172 curveto +26224.7 174.23 30740.1 201.675 30832 296 curveto +30868 332.929 30868.4 375.516 30832 412 curveto +30819.5 424.563 25736.1 415.085 25719 420 curveto +25689.3 428.555 25659.9 448.012 25639.4 463.765 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18966.4 124.03 moveto +-20 -7.01 rlineto +20 -6.99 rlineto +0 14 rlineto +18966.4 124.03 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25617.7 388.234 moveto +25616.4 409.943 25614.6 442.172 25613.3 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25568.4 383.725 moveto +25552.6 392.251 25537 404.082 25528 420 curveto +25502.7 464.905 25511.3 487.212 25528 536 curveto +25534.7 555.627 25548.9 574.102 25561.5 587.805 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25607 512.234 moveto +25602.4 533.943 25595.6 566.172 25590.9 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25669.4 373.417 moveto +25740.1 384.773 25872.9 404.448 25987 412 curveto +25997.7 412.708 27522.4 412.403 27530 420 curveto +27566.4 456.55 27566.4 499.534 27530 536 curveto +27521.4 544.591 13549.1 542.782 13537 544 curveto +13425.3 555.255 13295.5 587.315 13237.6 602.642 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.525 moveto +19446.6 245.872 22825.1 276.055 25568 288 curveto +25601.7 288.147 30381.5 287.38 30414 296 curveto +30446.1 304.508 30478.6 323.969 30501.4 339.737 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.522 moveto +-19.9 -7.182 rlineto +20.1 -6.818 rlineto +-0.2 14 rlineto +18967.1 248.522 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.523 moveto +19446.6 245.857 22825.1 275.949 25568 288 curveto +25600.2 288.141 30167.1 287.225 30198 296 curveto +30228.1 304.548 30258.1 324.005 30279 339.761 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.52 moveto +-19.9 -7.181 rlineto +20.1 -6.818 rlineto +-0.2 13.999 rlineto +18967.1 248.52 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.522 moveto +19446.6 245.846 22825.1 275.874 25568 288 curveto +25583.6 288.069 30041.5 290.283 30056 296 curveto +30078.4 304.832 30098 324.26 30111 339.933 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.519 moveto +-19.9 -7.181 rlineto +20.1 -6.819 rlineto +-0.2 14 rlineto +18967.1 248.519 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.52 moveto +19446.6 245.829 22825.1 275.761 25568 288 curveto +25597.8 288.133 29829.5 287.307 29858 296 curveto +29886.2 304.597 29913.7 324.049 29932.7 339.791 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.517 moveto +-19.9 -7.18 rlineto +20.1 -6.819 rlineto +-0.2 13.999 rlineto +18967.1 248.517 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.519 moveto +19446.6 245.816 22825.1 275.674 25568 288 curveto +25582.4 288.065 29702.6 290.715 29716 296 curveto +29738.4 304.834 29758 324.262 29771 339.934 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.516 moveto +-19.9 -7.18 rlineto +20.1 -6.82 rlineto +-0.2 14 rlineto +18967.1 248.516 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.517 moveto +19446.6 245.797 22825.1 275.538 25568 288 curveto +25595.4 288.124 29487.8 288.122 29514 296 curveto +29542.6 304.588 29570.6 324.041 29590.1 339.785 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.514 moveto +-19.9 -7.179 rlineto +20.1 -6.821 rlineto +-0.2 14 rlineto +18967.1 248.514 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.515 moveto +19446.6 245.779 22825.1 275.418 25568 288 curveto +25594.3 288.12 29325.2 287.226 29350 296 curveto +29374.6 304.723 29397.3 324.162 29412.7 339.867 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.512 moveto +-19.9 -7.178 rlineto +20.1 -6.822 rlineto +-0.2 14 rlineto +18967.1 248.512 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.512 moveto +19446.6 245.759 22825.1 275.278 25568 288 curveto +25593.1 288.116 29152.3 287.964 29176 296 curveto +29201.6 304.683 29225.7 324.126 29242.2 339.843 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.509 moveto +-19.9 -7.177 rlineto +20.1 -6.822 rlineto +-0.2 13.999 rlineto +18967.1 248.509 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.509 moveto +19446.6 245.727 22825.1 275.063 25568 288 curveto +25591.4 288.11 28915.4 290.079 28938 296 curveto +28970.5 304.512 29003.6 323.973 29026.8 339.739 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.506 moveto +-19.9 -7.176 rlineto +20.1 -6.823 rlineto +-0.2 13.999 rlineto +18967.1 248.506 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.505 moveto +19446.6 245.69 22825.1 274.809 25568 288 curveto +25589.7 288.104 28672.9 290.755 28694 296 curveto +28728.2 304.522 28763.4 324.093 28788.1 339.895 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.502 moveto +-19.9 -7.175 rlineto +20.1 -6.824 rlineto +-0.2 13.999 rlineto +18967.1 248.502 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +30264.3 388.111 moveto +30244.7 397.471 30220.8 407.192 30198 412 curveto +30148.8 422.382 29340.6 403.766 29293 420 curveto +29212.2 447.553 29220.9 508.793 29140 536 curveto +29094.1 551.45 1273.74 527.987 1228 544 curveto +1203.18 552.692 1180.21 572.134 1164.59 587.848 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.4 275.654 moveto +25814.5 280.668 25823.2 285.105 25832 288 curveto +25890.7 307.252 26050.9 277.832 26110 296 curveto +26138.9 304.899 26167.6 324.103 26187.7 339.679 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25802.2 281.314 moveto +-12.4 -17.183 rlineto +20.5 5.7 rlineto +-8.1 11.483 rlineto +25802.2 281.314 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +32258.5 140.23 moveto +32263.7 161.94 32271.3 194.17 32276.5 215.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.3 275.743 moveto +25814.4 280.748 25823.2 285.158 25832 288 curveto +25882.5 304.209 26256.8 287.071 26309 296 curveto +26370.5 306.503 26438.6 332.47 26477.7 348.818 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25802.2 281.402 moveto +-12.4 -17.184 rlineto +20.4 5.702 rlineto +-8 11.482 rlineto +25802.2 281.402 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.1 275.652 moveto +25814.3 280.707 25823.1 285.159 25832 288 curveto +25870.5 300.241 26519.4 288.123 26559 296 curveto +26606.5 305.443 26657.7 328.013 26690.7 344.352 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.9 281.217 moveto +-12.4 -17.205 rlineto +20.4 5.737 rlineto +-8 11.468 rlineto +25801.9 281.217 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.1 275.671 moveto +25814.3 280.724 25823.1 285.17 25832 288 curveto +25882.1 303.847 26725.3 286.706 26777 296 curveto +26824.6 304.557 26876.1 324.124 26912.6 339.915 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.8 281.236 moveto +-12.3 -17.206 rlineto +20.4 5.738 rlineto +-8.1 11.468 rlineto +25801.8 281.236 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.9 276.154 moveto +13083.5 280.99 13091.7 285.239 13100 288 curveto +13159.1 307.585 13600.7 277.195 13660 296 curveto +13687.7 304.782 13714.6 324.215 13733.2 339.902 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.6 281.643 moveto +-12.1 -17.419 rlineto +20.3 6.093 rlineto +-8.2 11.326 rlineto +13071.6 281.643 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13855.5 531.063 moveto +13848 550.09 13839.4 571.846 13833.1 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13849 528.283 moveto +13.9 -16.049 rlineto +-0.9 21.175 rlineto +-13 -5.126 rlineto +13849 528.283 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13906.1 527.474 moveto +13923.6 547.304 13944.4 570.83 13959.5 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13900.6 531.85 moveto +-8 -19.616 rlineto +18.5 10.336 rlineto +-10.5 9.28 rlineto +13900.6 531.85 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13806.2 514.276 moveto +13786.4 522.801 13764.9 532.977 13746 544 curveto +13724.1 556.774 13701.3 574.019 13684.3 587.814 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13803.8 507.702 moveto +21.1 -1.217 rlineto +-15.7 14.144 rlineto +-5.4 -12.927 rlineto +13803.8 507.702 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14068.7 388.234 moveto +14065.4 409.943 14065.4 442.172 14068.7 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14089.9 463.852 moveto +14093.4 442.172 14093.4 409.943 14089.9 388.234 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14039.6 388.234 moveto +14002.7 409.943 13948.1 442.172 13911.3 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13911.7 388.234 moveto +13902.9 409.943 13890 442.172 13881.3 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13625.3 388.193 moveto +13636 396.467 13648.6 405.37 13661 412 curveto +13714.3 440.517 13780.7 462.063 13824.6 474.584 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14052.7 500.268 moveto +14024.5 511.746 13978 528.844 13936 536 curveto +13848.6 550.899 13625.1 534.249 13537 544 curveto +13425.4 556.342 13295.6 587.858 13237.6 602.845 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +14083.6 512.234 moveto +14087.8 533.943 14094.2 566.172 14098.4 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.5 117.74 moveto +13714.8 122.86 16475.6 153.16 18723 164 curveto +18747.2 164.12 25672.6 162.89 25695 172 curveto +25716.8 180.86 25735.5 200.287 25747.9 215.951 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.4 124.74 moveto +-19.9 -7.23 rlineto +20.1 -6.77 rlineto +-0.2 14 rlineto +13257.4 124.74 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.7 238.579 moveto +13756.8 229.768 16501.9 182.49 18740.5 168 curveto +18789.6 167.68 25764.7 162.49 25813.5 168 curveto +25846.1 171.68 25875.8 196.374 25894.5 215.829 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13257.8 245.58 moveto +-20.2 -6.645 rlineto +19.9 -7.353 rlineto +0.3 13.998 rlineto +13257.8 245.58 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25738.1 264.01 moveto +25725.9 273.35 25710.6 283.083 25695 288 curveto +25659.1 299.291 25050.9 277.824 25018 296 curveto +24964.3 325.666 24996.9 382.633 24943 412 curveto +24907.4 431.375 13315.8 405.546 13278 420 curveto +13255 428.785 13234.6 448.218 13220.9 463.904 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25946.8 264.122 moveto +25961.6 273.484 25979.9 283.203 25998 288 curveto +26064.9 305.737 28421.9 279.013 28489 296 curveto +28594.6 322.75 28599.6 384.449 28705 412 curveto +28716.7 415.056 29131.5 411.376 29140 420 curveto +29176.1 456.789 29176.4 499.527 29140 536 curveto +29129.7 546.305 20764.6 543.364 20750 544 curveto +20469.7 556.242 20133.9 592.821 20017.9 606.108 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25946.8 264.116 moveto +25961.6 273.477 25979.9 283.197 25998 288 curveto +26011.7 291.647 28034 285.933 28044 296 curveto +28080.4 332.526 28080.4 375.535 28044 412 curveto +28034.9 421.066 13290 415.427 13278 420 curveto +13255 428.784 13234.6 448.217 13220.9 463.903 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.1 275.684 moveto +25814.3 280.736 25823.1 285.178 25832 288 curveto +25863.8 298.025 26998.1 290.79 27031 296 curveto +27084.7 304.507 27143.5 324.079 27185.4 339.886 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.8 281.249 moveto +-12.3 -17.206 rlineto +20.4 5.738 rlineto +-8.1 11.468 rlineto +25801.8 281.249 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13062.7 200.251 moveto +13073 188.97 13085.7 178.06 13100 172 curveto +13120.8 163.19 26092.4 164.11 26115 164 curveto +28321.5 153.5 31046.7 121.18 31363.5 117.37 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13067.9 204.935 moveto +-18.1 11.046 rlineto +7.3 -19.912 rlineto +10.8 8.866 rlineto +13067.9 204.935 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31352.5 153.6 moveto +31345.9 159.66 31339.2 165.94 31333 172 curveto +31318.5 186.19 31302.9 202.788 31290.8 215.915 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +31347.9 148.3 moveto 19.5 -8.21 rlineto -10.1 18.6 rlineto -9.4 -10.39 rlineto -11927.9 148.3 lineto +31347.9 148.3 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11961.7 160.27 moveto -11960.7 179.01 11961.3 200.185 11963.7 215.852 curveto +31381.7 160.27 moveto +31380.7 179.01 31381.3 200.185 31383.7 215.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11954.8 159.44 moveto +31374.8 159.44 moveto 8.9 -19.21 rlineto 5 20.6 rlineto -13.9 -1.39 rlineto -11954.8 159.44 lineto +31374.8 159.44 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11984.9 215.852 moveto -11988.4 194.172 11988.4 161.94 11984.9 140.23 curveto +31404.9 215.852 moveto +31408.4 194.17 31408.4 161.94 31404.9 140.23 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11943.3 280.067 moveto -11927.8 299.772 11909.5 322.999 11896.2 339.852 curveto +31364 280.364 moveto +31349 300.005 31331.4 323.084 31318.6 339.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11937.8 275.623 moveto -17.9 -11.389 rlineto --6.8 20.047 rlineto --11.1 -8.658 rlineto -11937.8 275.623 lineto +31358.6 275.896 moveto +17.7 -11.662 rlineto +-6.6 20.15 rlineto +-11.1 -8.488 rlineto +31358.6 275.896 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -12000.5 140.23 moveto -12025.2 161.94 12061.9 194.172 12086.6 215.852 curveto +31420.5 140.23 moveto +31445.2 161.94 31481.9 194.17 31506.6 215.852 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11874.9 264.046 moveto -11885.8 272.922 11899.3 282.29 11913 288 curveto -11924.2 292.657 11959.1 286.815 11967 296 curveto -12000.7 335.035 11992.2 367.008 11967 412 curveto -11915.6 503.932 11866.4 507.321 11765 536 curveto -11735 544.486 2819.16 543.128 2788 544 curveto -2315.5 557.229 1740.79 598.515 1603.49 608.708 curveto +31294.9 264.098 moveto +31305.8 272.982 31319.2 282.342 31333 288 curveto +31344.8 292.865 31381.6 286.347 31390 296 curveto +31423.8 334.906 31426.4 375.461 31390 412 curveto +31381.4 420.613 29652 418.251 29640 420 curveto +29458.1 446.456 29425 509.913 29243 536 curveto +29135 551.478 13645.5 533.067 13537 544 curveto +13425.3 555.251 13295.5 587.313 13237.6 602.641 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11804.7 242.48 moveto -11668.1 247.257 11262 263.851 11134 296 curveto -11010.1 327.115 10996 385.602 10871 412 curveto -10839.7 418.62 1673.93 408.564 1644 420 curveto -1621 428.787 1600.59 448.22 1586.88 463.906 curveto +31226.9 264.134 moveto +31150.1 303.834 30983.6 383.418 30832 412 curveto +30802.1 417.646 13306.5 409.128 13278 420 curveto +13255 428.783 13234.6 448.216 13220.9 463.903 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -11957.8 215.739 moveto -11946.6 200.913 11930.5 182.788 11912 172 curveto -11905.1 167.98 11902.4 168.89 11894.5 168 curveto -11859.2 164.02 1696.81 164.02 1661.5 168 curveto -1628.01 171.78 1597.09 196.453 1577.5 215.877 curveto +31377.8 215.739 moveto +31366.6 200.913 31350.5 182.79 31332 172 curveto +31325.1 167.98 31322.4 168.89 31314.5 168 curveto +31283.1 164.46 13148.9 164.46 13117.5 168 curveto +13109.6 168.89 13106.9 168.06 13100 172 curveto +13081 182.8 13064.1 200.929 13052.2 215.75 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1756.16 275.604 moveto -1763.53 280.244 1771.29 284.575 1779 288 curveto -1793.19 294.301 1798.77 289.802 1813 296 curveto -1838.87 307.264 1865.26 325.28 1884.43 339.794 curveto +25721.6 275.514 moveto +25713.2 280.647 25704.2 285.161 25695 288 curveto +25654.3 300.604 22669.4 292.288 22627 296 curveto +22521 305.274 22400.3 328.248 22322.5 344.707 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1751.93 281.196 moveto --12.57 -17.056 rlineto -20.47 5.492 rlineto --7.9 11.564 rlineto -1751.93 281.196 lineto +25717.7 269.698 moveto +20.4 -5.621 rlineto +-12.5 17.135 rlineto +-7.9 -11.514 rlineto +25717.7 269.698 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1607.68 273.932 moveto -1619.22 279.74 1631.69 284.911 1644 288 curveto -1655.65 290.924 8554.51 287.501 8563 296 curveto -8599.43 332.476 8599.43 375.521 8563 412 curveto -8555.46 419.546 2430.64 419.269 2420 420 curveto -2256.39 431.241 2064.16 463.004 1977.08 478.409 curveto +25721.6 275.517 moveto +25713.2 280.649 25704.2 285.163 25695 288 curveto +25647.9 302.588 22188.8 280.3 22142 296 curveto +22116.1 304.676 22091.8 324.12 22075.1 339.838 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1604.07 279.933 moveto --14.14 -15.78 rlineto -20.89 3.517 rlineto --6.75 12.263 rlineto -1604.07 279.933 lineto +25717.7 269.7 moveto +20.4 -5.62 rlineto +-12.5 17.134 rlineto +-7.9 -11.514 rlineto +25717.7 269.7 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -266.44 244.98 moveto -403.71 254.314 761.662 277.606 1061 288 curveto -1092.04 289.078 1590.19 287.274 1620 296 curveto -1649.86 304.741 1679.59 324.178 1700.27 339.878 curveto +25806.1 275.694 moveto +25814.3 280.745 25823.1 285.184 25832 288 curveto +25851.8 294.224 27309.4 281.308 27324 296 curveto +27360.4 332.553 27360.4 375.516 27324 412 curveto +27311.4 424.647 22193.5 413.209 22177 420 curveto +22155.4 428.879 22137 448.303 22124.8 463.962 curveto stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -265.823 251.954 moveto --19.476 -8.348 rlineto -20.431 -5.619 rlineto --0.955 13.967 rlineto -265.823 251.954 lineto +25801.8 281.259 moveto +-12.3 -17.207 rlineto +20.4 5.739 rlineto +-8.1 11.468 rlineto +25801.8 281.259 lineto closepath stroke 1.0 setlinewidth 0.6588 0 0.2118 setrgbcolor newpath -1916.24 388.234 moveto -1919.26 409.943 1923.75 442.172 1926.77 463.852 curveto +13075.4 275.914 moveto +13083.1 280.878 13091.5 285.231 13100 288 curveto +13122.6 295.333 19922.3 294.28 19946 296 curveto +20305.2 322.054 20388.8 385.149 20748 412 curveto +20767.8 413.479 22157.7 412.29 22176 420 curveto +22197.1 428.886 22214.8 448.091 22226.6 463.671 curveto stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.523 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.523 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13075.4 275.916 moveto +13083.1 280.88 13091.5 285.233 13100 288 curveto +13161 307.784 22276.7 280.79 22339 296 curveto +22447.9 322.579 22454.1 385.344 22563 412 curveto +22574.8 414.88 26042.4 411.426 26051 420 curveto +26087.4 456.497 26087.4 499.507 26051 536 curveto +26041.5 545.544 22180.2 538.331 22168 544 curveto +22148.6 552.99 22133.4 572.185 22123.6 587.735 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13071.2 281.525 moveto +-12 -17.455 rlineto +20.3 6.153 rlineto +-8.3 11.302 rlineto +13071.2 281.525 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13234.8 449.322 moveto +13246.9 437.621 13261.8 426.179 13278 420 curveto +13332.6 399.129 21642.9 434.115 21697 412 curveto +21709.1 407.059 21719.8 397.445 21728 388.193 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +13239.7 454.238 moveto +-18.8 9.668 rlineto +8.7 -19.316 rlineto +10.1 9.648 rlineto +13239.7 454.238 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18966.7 117.47 moveto +19439.2 121.47 22881.6 150.3 25675 164 curveto +25985.7 165.52 28160.4 163.54 28471 172 curveto +28604.5 175.64 30780 199.149 30872 296 curveto +30907.5 333.384 30908.4 375.45 30872 412 curveto +30857 427.075 29361.2 413.416 29341 420 curveto +29257.1 447.306 29263.9 508.822 29180 536 curveto +29155.6 543.892 25517.6 543.708 25492 544 curveto +24207.4 558.658 22637 600.374 22309.6 609.304 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18966.4 124.46 moveto +-20 -7.17 rlineto +20.1 -6.83 rlineto +-0.1 14 rlineto +18966.4 124.46 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.2 240.863 moveto +19280.8 240.331 20784.3 240.704 20983 296 curveto +21015 304.907 21047.5 324.327 21070.3 339.978 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 247.863 moveto +-20 -6.962 rlineto +20 -7.038 rlineto +0 14 rlineto +18967.1 247.863 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.4 241.075 moveto +19361.1 241.717 21653 247.533 21791 296 curveto +21816.4 304.905 21840.2 324.326 21856.5 339.977 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.075 moveto +-20 -7.031 rlineto +20 -6.969 rlineto +0 14 rlineto +18967.1 248.075 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.7 241.455 moveto +19334.8 244.449 21334.9 262.268 21459 296 curveto +21491.5 304.824 21524.6 324.253 21547.8 339.928 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.4 248.453 moveto +-19.9 -7.161 rlineto +20 -6.838 rlineto +-0.1 13.999 rlineto +18967.4 248.453 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.016 moveto +19165.6 241.523 19837.6 246.994 20390 296 curveto +20520.3 307.561 20669.5 330.084 20765.6 345.81 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.2 248.016 moveto +-19.9 -7.038 rlineto +20 -6.962 rlineto +-0.1 14 rlineto +18967.2 248.016 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22058.6 484.789 moveto +21827.2 474.77 20844.6 433.54 20038 420 curveto +19857.4 416.969 13717.3 422.511 13537 412 curveto +13397.3 403.853 13231.8 380.358 13163.3 370.003 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22109.4 512.234 moveto +22109.7 533.943 22110.3 566.172 22110.6 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22235.7 656.275 moveto +22234.7 675.008 22235.3 696.185 22237.7 711.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22228.8 655.443 moveto +8.9 -19.209 rlineto +5 20.595 rlineto +-13.9 -1.386 rlineto +22228.8 655.443 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22258.9 711.852 moveto +22262.4 690.172 22262.4 657.943 22258.9 636.234 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22241.2 388.234 moveto +22241.4 409.943 22241.6 442.172 22241.8 463.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +21763.5 388.361 moveto +21771.4 396.959 21781.3 406.041 21792 412 curveto +21877.9 459.941 21993.5 477.36 22058.7 483.601 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22135.5 512.234 moveto +22160.2 533.943 22196.9 566.172 22221.6 587.852 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.527 moveto +19446.6 245.887 22825.1 276.159 25568 288 curveto +25585.6 288.076 30631.1 291.008 30648 296 curveto +30677 304.571 30705.6 324.026 30725.5 339.775 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.523 moveto +-19.9 -7.182 rlineto +20.1 -6.817 rlineto +-0.2 13.999 rlineto +18967.1 248.523 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.5 241.528 moveto +19446.6 245.898 22825.1 276.234 25568 288 curveto +25577.1 288.039 30825.5 289.533 30832 296 curveto +30868.4 332.483 30868.4 375.45 30832 412 curveto +30824.5 419.577 29303.6 418.588 29293 420 curveto +29229.4 428.48 29159 448.111 29108.8 463.944 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +18967.1 248.525 moveto +-19.9 -7.183 rlineto +20.1 -6.817 rlineto +-0.2 14 rlineto +18967.1 248.525 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.1 275.697 moveto +25814.2 280.748 25823.1 285.186 25832 288 curveto +25853.7 294.841 27452.8 285.472 27473 296 curveto +27529 325.164 27499.1 382.732 27555 412 curveto +27578 424.027 28463.7 414.184 28489 420 curveto +28526.4 428.596 28565.5 448.159 28593 463.939 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.8 281.262 moveto +-12.3 -17.206 rlineto +20.4 5.739 rlineto +-8.1 11.467 rlineto +25801.8 281.262 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22140.7 448.858 moveto +22151.2 438.087 22163.7 427.358 22177 420 curveto +22184 416.14 22186.6 416.895 22194.5 416 curveto +22239.6 410.911 28685.4 410.911 28730.5 416 curveto +28766 420.002 28799.7 444.634 28821.2 463.988 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +22145.9 453.613 moveto +-18.6 10.151 rlineto +8.2 -19.534 rlineto +10.4 9.383 rlineto +22145.9 453.613 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +28807.3 512.179 moveto +28789.9 521.552 28768.6 531.264 28748 536 curveto +28696.5 547.828 13589.5 538.705 13537 544 curveto +13425.3 555.252 13295.5 587.314 13237.6 602.641 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.1 275.705 moveto +25814.2 280.754 25823.1 285.191 25832 288 curveto +25886.5 305.131 27836.4 276.034 27890 296 curveto +27913.6 304.791 27934.9 324.223 27949.2 339.908 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.8 281.27 moveto +-12.3 -17.207 rlineto +20.4 5.739 rlineto +-8.1 11.468 rlineto +25801.8 281.27 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.1 275.702 moveto +25814.2 280.752 25823.1 285.189 25832 288 curveto +25882.5 303.857 27686.4 277.52 27736 296 curveto +27759.6 304.795 27780.9 324.227 27795.2 339.91 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.8 281.267 moveto +-12.3 -17.206 rlineto +20.4 5.739 rlineto +-8.1 11.467 rlineto +25801.8 281.267 lineto +closepath stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25806.1 275.699 moveto +25814.2 280.749 25823.1 285.187 25832 288 curveto +25877.4 302.268 27498.5 282.165 27544 296 curveto +27572.4 304.632 27600.1 324.08 27619.4 339.811 curveto +stroke +1.0 setlinewidth +0.6588 0 0.2118 setrgbcolor +newpath +25801.8 281.264 moveto +-12.3 -17.207 rlineto +20.4 5.739 rlineto +-8.1 11.468 rlineto +25801.8 281.264 lineto +closepath stroke grestore showpage %plantuml done diff --git a/doc/PDLEntities.png b/doc/PDLEntities.png index ccb5aa0cc..138e66840 100644 Binary files a/doc/PDLEntities.png and b/doc/PDLEntities.png differ diff --git a/doc/PDLEntities.svg b/doc/PDLEntities.svg index 326c6990f..68b39393e 100644 --- a/doc/PDLEntities.svg +++ b/doc/PDLEntities.svg @@ -1,4 +1,4 @@ - + @@ -8,1672 +8,2889 @@ - - - com.arsdigita.auditing - - - com.arsdigita.kernel - - - com.arsdigita.atoz - - - com.arsdigita.web - - - com.arsdigita.categorization - - - com.arsdigita.cms - - - com.arsdigita.atoz.siteproxy - - - com.arsdigita.auth.http - - - com.arsdigita.versioning - - - com.arsdigita.workflow.simple - - - com.arsdigita.globalization - - - com.arsdigita.formbuilder - - - com.arsdigita.cms.contentassets - - - com.arsdigita.cms.contenttypes - - - com.arsdigita.cms.portlet - - - com.arsdigita.portal - - - com.arsdigita.cms.publicpersonalprofile - - - com.arsdigita.cms.publishToFile - - - com.arsdigita.formbuilder.actions - - - com.arsdigita.globalization.Charset - - - com.arsdigita.kernel.permissions - - - com.arsdigita.kernel.security - - - com.arsdigita.messaging - - - com.arsdigita.notification - - - com.arsdigita.persistence - - - com.arsdigita.cms.portletdataprovider - - - com.arsdigita.preferences - - - com.arsdigita.runtime - - - com.arsdigita.search.lucene - - - com.arsdigita.search.intermedia - - - com.arsdigita.ui.Login - - - com.arsdigita.ui.admin - - - com.arsdigita.ui.permissions - - - com.arsdigita.webdevsupport - - - com.arsdigita.workspace - - - - BasicAuditTrail - - - - - - ACSObject - - - - - - User - - - - - - Group - - - - - - Application - - - - - - EmailAdress - - - - - - Party - - - - - - PartyEmail - - - - - - PersonName - - - - - - ResourceType - - - - - - Resource - - - - - - Role - - - - - - ObjectContext - - - - - - UserAuthentication - - - - - - AtoZ - - - - - - AtoZProvider - - - - - - CategoryProvider - - - - - - CategoryAlias - - - - - - ItemAlias - - - - - - ItemProvider - - - - - - Application - - - - - - Host - - - - - - ApplicationType - - - - - - Category - - - - - - CategoryLocalization - - - - - - UseContext - - - - - - CategoryPurpose - - - - - - ContentType - - - - - - Asset - - - - - - AuthoringKit - - - - - - AuthoringStep - - - - - - CategoryTemplateMapping - - - - - - CMSTask - - - - - - CMSTaskType - - - - - - ContentCenter - - - - - - ContentBundle - - - - - - ContentItem - - - - - - ContentPage - - - - - - ContentSection - - - - - - ContentTypeLifecycleDefinition - - - - - - ContentTypeWorkflowTemplate - - - - - - FileAsset - - - - - - Folder - - - - - - ImageAsset - - - - - - ImageMimeType - - - - - - ItemTemplateMapping - - - - - - Lifecycle - - - - - - LifecycleDefinition - - - - - - LifecycleService - - - - - - Link - - - - - - MimeType - - - - - - MimeTypeExtension - - - - - - MimeTypeStatus - - - - - - Phase - - - - - - PhaseDefinition - - - - - - PublishLock - - - - - - PostConvertHTML - - - - - - PreConvertHTML - - - - - - PublishedLink - - - - - - RelationAttribute - - - - - - ResourceType - - - - - - Resource - - - - - - ResourceMapping - - - - - - ReusableImageAsset - - - - - - SectionTemplateMapping - - - - - - Service - - - - - - Standalone - - - - - - TaskEventURLGenerator - - - - - - TemplateContext - - - - - - Template - - - - - - TextAsset - - - - - - TextMimeType - - - - - - UpgradeProcess - - - - - - UserDefinedContentItem - - - - - - UserHomeFolderMap - - - - - - Category - - - - - - ACSObject - - - - - - User - - - - - - SiteProxyProvider - - - - - - HttpAuth - - - - - - Nounce - - - - - - UserLogin - - - - - - HTTPAuth - - - - - - VersionedACSObject - - - - - - BlobOperation - - - - - - ClobOperation - - - - - - DataObjectChange - - - - - - EventType - - - - - - GenericOperation - - - - - - JavaClass - - - - - - Operation - - - - - - Tag - - - - - - Txn - - - - - - UserTask - - - - - - WorkflowTemplate - - - - - - Task - - - - - - TaskComment - - - - - - Workflow - - - - - - Charset.Locale - - - - - - FormSection - - - - - - Component - - - - - - DataDrivenSelect - - - - - - Listener - - - - - - MetaObject - - - - - - ObjectType - - - - - - Option - - - - - - PersistentDataQuery - - - - - - ProcessListener - - - - - - Widget - - - - - - WidgetLabel - - - - - - DublinCoreES - - - - - - FileAttachment - - - - - - GenericOrgaUnitTextAsset - - - - - - ItemImageAttachment - - - - - - Notes - - - - - - RelatedLink - - - - - - ReleatedLink - - - - - - Link - - - - - - ReusableImageAsset - - - - - - Note - - - - - - ContentItem - - - - - - Link - - - - - - GenericOrganizationalUnit - - - - - - AddressType - - - - - - Agenda - - - - - - Article - - - - - - Bookmark - - - - - - Contact - - - - - - ContentGroup - - - - - - ContentGroupAssociation - - - - - - DecisionTree - - - - - - DecisionTreeSection - - - - - - DecisionTreeOption - - - - - - DecisionTreeSectionOptionTarget - - - - - - Event - - - - - - GenericAddress - - - - - - GenericAddressBundle - - - - - - GenericArticle - - - - - - GenericContact - - - - - - GenericContactBundle - - - - - - GenericContactEntry - - - - - - GenericOrganizationalUnitBundle - - - - - - GenericPerson - - - - - - GenericPersonBundle - - - - - - PublicPersonalProfile - - - - - - PublicPersonalProfileBundle - - - - - - PublicPersonalProfileNavItem - - - - - - DecisionTreeSectionOption - - - - - - DecisionTreeOptionTarget - - - - - - Address - - - - - - DecisionTreeptionTarget - - - - - - ContentItem - - - - - - ContentDirectoryPortlet - - - - - - ContentItemPortlet - - - - - - ContentSectionsPortlet - - - - - - TaskPortlet - - - - - - Portlet - - - - - - AgentPortlet - - - - - - Portal - - - - - - PortletType - - - - - - PublicPersonalProfile - - - - - - QueueEntry - - - - - - PublishedFile - - - - - - PublishedLink - - - - - - ConfirmEmailListener - - - - - - ConfirmRedirectListener - - - - - - RemoteServerPostListener - - - - - - SimpleEmailListener - - - - - - TemplateEmailListener - - - - - - XMLEmailListener - - - - - - Charset - - - - - - MessageCatalog - - - - - - Permission - - - - - - Privilege - - - - - - KeyStore - - - - - - Message - - - - - - MessagePart - - - - - - Thread - - - - - - ThreadedMessage - - - - - - Party - - - - - - Digest - - - - - - Notification - - - - - - QueueItem - - - - - - DynamicAssociation - - - - - - DynamicObjectType - - - - - - PortletDataProvider - - - - - - PreferenceParameter - - - - - - Preferences - - - - - - PerferenceParameter - - - - - - Initializer - - - - - - Document - - - - - - IndexId - - - - - - SearchContent - - - - - - Login - - - - - - Admin - - - - - - Permissions - - - - - - WebDevSupport - - - - - - BookmarkApplication - - - - - - Bookmark - - - - - - BookmarkPortlet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + com.arsdigita.admin + + + com.arsdigita.web + + + com.arsdigita.auditing + + + com.arsdigita.kernel + + + com.arsdigita.atoz + + + com.arsdigita.categorization + + + com.arsdigita.cms + + + com.arsdigita.atoz.siteproxy + + + com.arsdigita.auth.http + + + com.arsdigita.versioning + + + com.arsdigita.workflow.simple + + + com.arsdigita.globalization + + + com.arsdigita.formbuilder + + + com.arsdigita.cms.contentassets + + + com.arsdigita.cms.contenttypes + + + com.arsdigita.cms.contenttypes.xmlfeed + + + com.arsdigita.cms.formbuilder + + + com.arsdigita.formbuoilder + + + com.arsdigita.cms.docmgr + + + com.arsdigita.cms.docmgr.ui + + + com.arsdigita.portal + + + com.arsdigita.docrepo + + + com.arsdigita.docrepo.ui + + + com.arsdigita.cms.portlet + + + com.arsdigita.cms.publicpersonalprofile + + + com.arsdigita.cms.publishToFile + + + com.arsdigita.coventry.cms.contenttypes + + + com.arsdigita.faq + + + com.arsdigita.formbuilder.actions + + + com.arsdigita.formbuilder.pdf + + + com.arsdigita.forum + + + com.arsdigita.messaging + + + com.arsdigita.cms.lifecycle + + + com.arsdigita.notification + + + com.arsdigita.globalization.Charset + + + com.arsdigita.kernel.permissions + + + com.arsdigita.kernel.security + + + com.arsdigita.london.atoz + + + com.arsdigita.london.terms + + + com.arsdigita.london.cms.dublin + + + com.arsdigita.london.cms.freeform + + + com.arsdigita.london.cms.freeform.asset + + + com.arsdigita.london.importer + + + com.arsdigita.london.search + + + com.arsdigita.london.search.spider + + + com.arsdigita.london.terms.indexing + + + com.arsdigita.london.contenttypes + + + com.arsdigita.london.userprefs + + + com.arsdigita.navigation + + + com.arsdigita.navigation.portlet + + + com.arsdigita.persistence + + + com.arsdigita.portlet + + + com.arsdigita.portalworkspace + + + com.arsdigita.portalworkspace.portlet + + + com.arsdigita.cms.portletdataprovider + + + com.arsdigita.preferences + + + com.arsdigita.runtime + + + com.arsdigita.search.lucene + + + com.arsdigita.search.intermedia + + + com.arsdigita.ui.Login + + + com.arsdigita.ui.admin + + + com.arsdigita.ui.permissions + + + com.arsdigita.webdevsupport + + + com.arsdigita.workspace + + + com.arsdigita.workspace.misc + + + com.arsdigita.workspace.personal + + + com.arsdigita.workspace.ui + + + + CWAdmin + + + + + + Application + + + + + + Host + + + + + + Appliation + + + + + + ApplicationType + + + + + + BasicAuditTrail + + + + + + ACSObject + + + + + + User + + + + + + Group + + + + + + Application + + + + + + EmailAdress + + + + + + Party + + + + + + PartyEmail + + + + + + PersonName + + + + + + ResourceType + + + + + + Resource + + + + + + Role + + + + + + ObjectContext + + + + + + UserAuthentication + + + + + + AtoZ + + + + + + AtoZProvider + + + + + + CategoryProvider + + + + + + CategoryAlias + + + + + + ItemAlias + + + + + + ItemProvider + + + + + + Category + + + + + + CategoryLocalization + + + + + + UseContext + + + + + + CategoryPurpose + + + + + + ContentType + + + + + + Asset + + + + + + AuthoringKit + + + + + + AuthoringStep + + + + + + CategoryTemplateMapping + + + + + + CMSTask + + + + + + CMSTaskType + + + + + + ContentCenter + + + + + + ContentBundle + + + + + + ContentItem + + + + + + ContentPage + + + + + + ContentSection + + + + + + ContentTypeLifecycleDefinition + + + + + + ContentTypeWorkflowTemplate + + + + + + FileAsset + + + + + + Folder + + + + + + ImageAsset + + + + + + ImageMimeType + + + + + + ItemTemplateMapping + + + + + + Lifecycle + + + + + + LifecycleDefinition + + + + + + LifecycleService + + + + + + Link + + + + + + MimeType + + + + + + MimeTypeExtension + + + + + + MimeTypeStatus + + + + + + Phase + + + + + + PhaseDefinition + + + + + + PublishLock + + + + + + PostConvertHTML + + + + + + PreConvertHTML + + + + + + PublishedLink + + + + + + RelationAttribute + + + + + + ResourceType + + + + + + Resource + + + + + + ResourceMapping + + + + + + ReusableImageAsset + + + + + + SectionTemplateMapping + + + + + + Service + + + + + + Standalone + + + + + + TaskEventURLGenerator + + + + + + TemplateContext + + + + + + Template + + + + + + TextAsset + + + + + + TextMimeType + + + + + + UpgradeProcess + + + + + + UserDefinedContentItem + + + + + + UserHomeFolderMap + + + + + + Category + + + + + + ACSObject + + + + + + User + + + + + + TextPage + + + + + + FileAttachment + + + + + + ImageAttachment + + + + + + ContentItme + + + + + + SiteProxyProvider + + + + + + HttpAuth + + + + + + Nounce + + + + + + UserLogin + + + + + + HTTPAuth + + + + + + VersionedACSObject + + + + + + BlobOperation + + + + + + ClobOperation + + + + + + DataObjectChange + + + + + + EventType + + + + + + GenericOperation + + + + + + JavaClass + + + + + + Operation + + + + + + Tag + + + + + + Txn + + + + + + UserTask + + + + + + WorkflowTemplate + + + + + + Task + + + + + + TaskComment + + + + + + Workflow + + + + + + Charset.Locale + + + + + + FormSection + + + + + + Component + + + + + + DataDrivenSelect + + + + + + Listener + + + + + + MetaObject + + + + + + ObjectType + + + + + + Option + + + + + + PersistentDataQuery + + + + + + ProcessListener + + + + + + Widget + + + + + + WidgetLabel + + + + + + DublinCoreES + + + + + + FileAttachment + + + + + + GenericOrgaUnitTextAsset + + + + + + ItemImageAttachment + + + + + + Notes + + + + + + RelatedLink + + + + + + ReleatedLink + + + + + + Link + + + + + + ReusableImageAsset + + + + + + Note + + + + + + ContentItem + + + + + + Link + + + + + + GenericOrganizationalUnit + + + + + + AddressType + + + + + + Agenda + + + + + + Article + + + + + + ArticleSection + + + + + + Bookmark + + + + + + Contact + + + + + + ContentGroup + + + + + + ContentGroupAssociation + + + + + + DecisionTree + + + + + + DecisionTreeSection + + + + + + DecisionTreeOption + + + + + + DecisionTreeSectionOptionTarget + + + + + + Event + + + + + + FAQItem + + + + + + FileStorageItem + + + + + + GenericAddress + + + + + + GenericAddressBundle + + + + + + GenericArticle + + + + + + GenericContact + + + + + + GenericContactBundle + + + + + + GenericContactEntry + + + + + + GenericOrganizationalUnitBundle + + + + + + GenericPerson + + + + + + GenericPersonBundle + + + + + + GlossaryItem + + + + + + HistoricDate + + + + + + Image + + + + + + InlineSite + + + + + + IsoCountry + + + + + + Job + + + + + + LegalNotice + + + + + + Member + + + + + + Minutes + + + + + + MOTDItem + + + + + + MultiPartArticle + + + + + + NewsItem + + + + + + Organization + + + + + + Person + + + + + + PressRelease + + + + + + PublicPersonalProfile + + + + + + PublicPersonalProfileBundle + + + + + + PublicPersonalProfileNavItem + + + + + + ResearchNetwork + + + + + + ResearchNetworkMembership + + + + + + Service + + + + + + SimpleAddress + + + + + + SimpleOrganization + + + + + + SimpleOrganizationBundle + + + + + + SiteProxy + + + + + + Survey + + + + + + SurveyResponse + + + + + + SurveyAnswer + + + + + + DecisionTreeSectionOption + + + + + + DecisionTreeOptionTarget + + + + + + Address + + + + + + DecisionTreeptionTarget + + + + + + ContentItem + + + + + + ResarchNetworkMembership + + + + + + XMLFeed + + + + + + FormItem + + + + + + FormSectionItem + + + + + + FormSectionWrapper + + + + + + FormSection + + + + + + Component + + + + + + DocFolder + + + + + + DocLink + + + + + + Document + + + + + + DocumentCategoryBrowserApplication + + + + + + LegacyDocumentCategoryBrowserApplication + + + + + + Repository + + + + + + CategoryDocsNavigatorPortlet + + + + + + LegacyCategoryDocsNavigatorPortlet + + + + + + RecentUpdatedDocsPortlet + + + + + + RecentUpdatedDocsNavigatorPortlet + + + + + + Portlet + + + + + + AgentPortlet + + + + + + Portal + + + + + + PortletType + + + + + + DocBlobject + + + + + + File + + + + + + Folder + + + + + + Repository + + + + + + ResourceImpl + + + + + + RecentUpdatedDocsPortlet + + + + + + ContentDirectoryPortlet + + + + + + ContentItemPortlet + + + + + + ContentSectionsPortlet + + + + + + TaskPortlet + + + + + + PublicPersonalProfile + + + + + + QueueEntry + + + + + + PublishedFile + + + + + + PublishedLink + + + + + + Councillor + + + + + + Person + + + + + + Faq + + + + + + QAPair + + + + + + FaqQuestionsPortlet + + + + + + Portlet + + + + + + ConfirmEmailListener + + + + + + ConfirmRedirectListener + + + + + + RemoteServerPostListener + + + + + + SimpleEmailListener + + + + + + TemplateEmailListener + + + + + + XMLEmailListener + + + + + + PDFListener + + + + + + Forum + + + + + + ForumSubscription + + + + + + Inbox + + + + + + InboxPortlet + + + + + + MyForumsPortlet + + + + + + Post + + + + + + PostFileAttachment + + + + + + PostImageAttachment + + + + + + RecentPostingsPortlet + + + + + + ThreadSubscription + + + + + + ThreadedMessage + + + + + + Thread + + + + + + Message + + + + + + MessagePart + + + + + + Party + + + + + + LifecycleDefinition + + + + + + Digest + + + + + + Notification + + + + + + QueueItem + + + + + + Charset + + + + + + MessageCatalog + + + + + + Permission + + + + + + Privilege + + + + + + KeyStore + + + + + + DomainProvider + + + + + + Domain + + + + + + Term + + + + + + Terms + + + + + + DublinCoreItem + + + + + + FreeformContentItem + + + + + + FreeformContentItemAsset + + + + + + FreeformBinaryAsset + + + + + + FreeformTextAsset + + + + + + RemoteOidMapping + + + + + + Search + + + + + + Server + + + + + + SponsoredLink + + + + + + SpideredContent + + + + + + Indexer + + + + + + Contact + + + + + + ContactAddress + + + + + + ContactPhone + + + + + + ContactType + + + + + + ESDService + + + + + + PersistentUserPrefs + + + + + + Pref + + + + + + Navigation + + + + + + QuickLink + + + + + + Template + + + + + + TemplateMapping + + + + + + ItemListPortlet + + + + + + NavigationTreePortlet + + + + + + ObjectListPortlet + + + + + + DynamicAssociation + + + + + + DynamicObjectType + + + + + + BookmarksPortlet + + + + + + Bookmark + + + + + + NewsPortlet + + + + + + PageLayout + + + + + + Workspace + + + + + + WorkspacePage + + + + + + ApplicationDirectoryPortlet + + + + + + ContentDirectoryPortlet + + + + + + FlashPortlet + + + + + + FreeformHTMLPortlet + + + + + + LoginPortlet + + + + + + MyWorkspacesPortlet + + + + + + RSSFeedPortlet + + + + + + TimeOfDayPortlet + + + + + + WorkspaceNavigatorPortlet + + + + + + WorkspaceSummaryPortlet + + + + + + PortletDataProvider + + + + + + PreferenceParameter + + + + + + Preferences + + + + + + PerferenceParameter + + + + + + Initializer + + + + + + Document + + + + + + IndexId + + + + + + SearchContent + + + + + + Login + + + + + + Admin + + + + + + Permissions + + + + + + WebDevSupport + + + + + + ApplicationDirectoryPortlet + + + + + + BookmarkApplication + + + + + + Bookmark + + + + + + BookmarkPortlet + + + + + + Role + + + + + + SubWorkspaceTab + + + + + + Theme + + + + + + ThemeApplication + + + + + + Workspace + + + + + + WorkspaceNavigatiorPortlet + + + + + + WorkspaceSummaryPortlet + + + + + + WorkspaceTab + + + + + + WorkspaceNavigatorPortlet + + + + + + StarfleetPortlet + + + + + + MyWorkspacesPortlet + + + + + + PersonalWorkspace + + + + + + PersonalWorkspaceCreator + + + + + + PortalArchiver + + + + + + PortalSiteMap + + + + + + WorkspaceCreator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +